From bea39202f43e1520d95269774f0078d71ba583d6 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Sat, 14 Mar 1998 03:55:20 -0700 Subject: [PATCH] Initial revision From-SVN: r18557 --- gcc/config/xm-alloca.h | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 gcc/config/xm-alloca.h diff --git a/gcc/config/xm-alloca.h b/gcc/config/xm-alloca.h new file mode 100644 index 00000000000..3dbdc37a1f0 --- /dev/null +++ b/gcc/config/xm-alloca.h @@ -0,0 +1,4 @@ +/* If not compiled with GNU C, use the portable alloca. */ +#ifndef __GNUC__ +#define USE_C_ALLOCA +#endif