diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-06-26 11:43:50 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-06-26 11:43:50 -0400 |
commit | f62f398a28629937d937cae5bbc43e2d1e76e967 (patch) | |
tree | 9c509f48d3cbbd1714e10c2ce31663786db16d20 /gcc/config/m68k | |
parent | 47df02623af70d9c5285d69b72eed121e2b141d5 (diff) | |
download | gcc-f62f398a28629937d937cae5bbc43e2d1e76e967.zip gcc-f62f398a28629937d937cae5bbc43e2d1e76e967.tar.gz gcc-f62f398a28629937d937cae5bbc43e2d1e76e967.tar.bz2 |
Remove #define of alloca to __builtin_alloca.
From-SVN: r4756
Diffstat (limited to 'gcc/config/m68k')
-rw-r--r-- | gcc/config/m68k/xm-crds.h | 2 | ||||
-rw-r--r-- | gcc/config/m68k/xm-m68k.h | 9 |
2 files changed, 1 insertions, 10 deletions
diff --git a/gcc/config/m68k/xm-crds.h b/gcc/config/m68k/xm-crds.h index c41ec25..a594d3f 100644 --- a/gcc/config/m68k/xm-crds.h +++ b/gcc/config/m68k/xm-crds.h @@ -15,7 +15,5 @@ #ifndef __GNUC__ #define USE_C_ALLOCA -#else -#define alloca __builtin_alloca #endif diff --git a/gcc/config/m68k/xm-m68k.h b/gcc/config/m68k/xm-m68k.h index 2f09a4d..f3d626d 100644 --- a/gcc/config/m68k/xm-m68k.h +++ b/gcc/config/m68k/xm-m68k.h @@ -1,5 +1,5 @@ /* Configuration for GNU C-compiler for Motorola 68000 family. - Copyright (C) 1987 Free Software Foundation, Inc. + Copyright (C) 1987, 1993 Free Software Foundation, Inc. This file is part of GNU CC. @@ -38,10 +38,3 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Arguments to use with `exit'. */ #define SUCCESS_EXIT_CODE 0 #define FATAL_EXIT_CODE 33 - -/* If compiled with GNU C, use the built-in alloca */ -#ifdef __GNUC__ -/* Use an arg in this macro because that's what some other - system does--let's avoid conflict. */ -#define alloca(x) __builtin_alloca(x) -#endif |