aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-01-09 21:50:05 +0000
committerRichard Stallman <rms@gnu.org>1993-01-09 21:50:05 +0000
commitd10d74360ea3b8742377b5964d12e5164a384962 (patch)
tree0c045d41ffd5c81293125413afa391e927886a2e /gcc
parente986e82af85b2b4711d411cb2937b1e45f76a4a6 (diff)
downloadgcc-d10d74360ea3b8742377b5964d12e5164a384962.zip
gcc-d10d74360ea3b8742377b5964d12e5164a384962.tar.gz
gcc-d10d74360ea3b8742377b5964d12e5164a384962.tar.bz2
(alloca): Undef before defining.
From-SVN: r3176
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/i386/xm-i386.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/config/i386/xm-i386.h b/gcc/config/i386/xm-i386.h
index b617d9b..eb90681 100644
--- a/gcc/config/i386/xm-i386.h
+++ b/gcc/config/i386/xm-i386.h
@@ -38,6 +38,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* If compiled with GNU C, use the built-in alloca */
#ifdef __GNUC__
+#undef alloca
#define alloca __builtin_alloca
#endif