From 9c5501daf4ad0db95517edac57adf12292634cd8 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 16 Aug 1993 19:10:25 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r5164 --- gcc/alloca.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/alloca.c b/gcc/alloca.c index 367b7fe0377..cab9645b7e1 100644 --- a/gcc/alloca.c +++ b/gcc/alloca.c @@ -26,7 +26,8 @@ #endif /* If compiling with GCC 2, this file's not needed. */ -#if defined (__GNUC__) && __GNUC__ >= 2 +#if !defined (__GNUC__) || __GNUC__ < 2 + /* If someone has defined alloca as a macro, there must be some other way alloca is supposed to work. */ #ifndef alloca -- 2.30.2