From f3b38b4d36f8c143e5759ac3f425901738fb15d0 Mon Sep 17 00:00:00 2001 From: James Van Artsdalen Date: Mon, 11 Jan 1993 02:42:40 +0000 Subject: [PATCH] (alloca): Delete - already defined in xm-i386.h. From-SVN: r3188 --- gcc/config/i386/xm-sysv4.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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 -- 2.30.2