diff options
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 |