From: James Van Artsdalen Date: Mon, 11 Jan 1993 02:42:40 +0000 (+0000) Subject: (alloca): Delete - already defined in xm-i386.h. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f3b38b4d36f8c143e5759ac3f425901738fb15d0;p=gcc.git (alloca): Delete - already defined in xm-i386.h. From-SVN: r3188 --- diff --git a/gcc/config/i386/xm-sysv4.h b/gcc/config/i386/xm-sysv4.h index 12cba516066..6085735c50e 100644 --- a/gcc/config/i386/xm-sysv4.h +++ b/gcc/config/i386/xm-sysv4.h @@ -3,10 +3,7 @@ #include "i386/xm-i386.h" #include "xm-svr4.h" -/* If compiled with GNU C, use the built-in alloca. */ -#undef alloca -#ifdef __GNUC__ -#define alloca __builtin_alloca -#else +/* If not compiled with GNU C, use the portable alloca. */ +#ifndef __GNUC__ #define USE_C_ALLOCA #endif