diff options
author | roland <roland@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-08-16 19:10:25 +0000 |
---|---|---|
committer | roland <roland@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-08-16 19:10:25 +0000 |
commit | fa735390f5ce7973d0d593793d400f0c7eb75546 (patch) | |
tree | 507ad627bdf2809b0fbefc3576aa8087e5c68c6c /gcc/alloca.c | |
parent | 06a89553192778e7d602475b59c8bb32addfbb01 (diff) | |
download | gcc-fa735390f5ce7973d0d593793d400f0c7eb75546.tar.gz |
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5164 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/alloca.c')
-rw-r--r-- | gcc/alloca.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 |