1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* eval.c: Don't define alloca in GCC case. gcc will automatically

use __builtin_alloca if appropriate.
This commit is contained in:
Tom Tromey 1997-02-05 18:19:57 +00:00
parent 052642874c
commit 5862b540cd
2 changed files with 6 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Tue Feb 4 18:17:50 1997 Tom Tromey <tromey@cygnus.com>
* eval.c: Don't define alloca in GCC case. gcc will automatically
use __builtin_alloca if appropriate.
Tue Feb 4 16:57:40 1997 Jim Blandy <jimb@floss.cyclic.com>
* eval.c (safe_setjmp): New function: trivial wrapper for setjmp.

View file

@ -57,9 +57,7 @@
/* AIX requires this to be the first thing in the file. The #pragma
directive is indented so pre-ANSI compilers will ignore it, rather
than choke on it. */
#ifdef __GNUC__
# define alloca __builtin_alloca
#else
#ifndef __GNUC__
# if HAVE_ALLOCA_H
# include <alloca.h>
# else