diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-07-26 09:26:13 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-07-26 09:26:13 -0400 |
commit | b8913d054755f4dcfbea7fe572258abdcc18ee36 (patch) | |
tree | 1347551fd1c5a4f898b2f74b8b939d08aa38c022 /gcc | |
parent | 41dc1085de56e64374db9c7796348999a99936fd (diff) | |
download | gcc-b8913d054755f4dcfbea7fe572258abdcc18ee36.zip gcc-b8913d054755f4dcfbea7fe572258abdcc18ee36.tar.gz gcc-b8913d054755f4dcfbea7fe572258abdcc18ee36.tar.bz2 |
(USE_C_ALLOCA): Always define.
From-SVN: r10168
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/xm-pa.h | 5 | ||||
-rw-r--r-- | gcc/config/pa/xm-pahpux.h | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/gcc/config/pa/xm-pa.h b/gcc/config/pa/xm-pa.h index 8138cfa..cb87a76 100644 --- a/gcc/config/pa/xm-pa.h +++ b/gcc/config/pa/xm-pa.h @@ -60,7 +60,6 @@ extern int errno; /* HP's compiler has problems with enum bitfields. */ #define ONLY_INT_FIELDS -/* If not compiled with GNU C, use C alloca. */ -#ifndef __GNUC__ +/* Always claim to use C alloca; this prevents losing if building with + gcc -fno-builtin ... " */ #define USE_C_ALLOCA -#endif diff --git a/gcc/config/pa/xm-pahpux.h b/gcc/config/pa/xm-pahpux.h index 426a8f8..97e9403 100644 --- a/gcc/config/pa/xm-pahpux.h +++ b/gcc/config/pa/xm-pahpux.h @@ -1,5 +1,5 @@ /* Configuration for GNU C-compiler for PA-RISC. - Copyright (C) 1988 Free Software Foundation, Inc. + Copyright (C) 1988, 1995 Free Software Foundation, Inc. Contributed by Michael Tiemann (tiemann@cygnus.com). This file is part of GNU CC. @@ -63,7 +63,6 @@ Boston, MA 02111-1307, USA. */ /* HP's compiler has problems with enum bitfields. */ #define ONLY_INT_FIELDS -/* If not compiled with GNU C, use C alloca. */ -#ifndef __GNUC__ +/* Always claim to use C alloca; this prevents losing if building with + gcc -fno-builtin ... " */ #define USE_C_ALLOCA -#endif |