diff options
author | Donn Terry <donn@interix.com> | 1999-04-15 22:47:13 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-04-15 16:47:13 -0600 |
commit | 79dc434ecff9515f48e101547b4cbd866aedcca1 (patch) | |
tree | ffbeaa175d9a370535ec2b4785681d7ffc26763f /gcc | |
parent | 42a21f705045a9b90c4cf5add9b99a9eb3a35f6c (diff) | |
download | gcc-79dc434ecff9515f48e101547b4cbd866aedcca1.zip gcc-79dc434ecff9515f48e101547b4cbd866aedcca1.tar.gz gcc-79dc434ecff9515f48e101547b4cbd866aedcca1.tar.bz2 |
xm-alpha.h (alloca.h): Add Interix to list of special machines that don't like alloca.h...
* xm-alpha.h (alloca.h): Add Interix to list of special machines
that don't like alloca.h, pending using autoconf results.
From-SVN: r26483
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/config/alpha/xm-alpha.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 099aecc..4cbf866 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -6,6 +6,9 @@ Thu Apr 15 23:17:33 1999 Jerry Quinn <jquinn@nortelnetworks.com> Thu Apr 15 20:46:57 1999 Donn Terry (donn@interix.com) + * xm-alpha.h (alloca.h): Add Interix to list of special machines + that don't like alloca.h, pending using autoconf results. + * except.c (start_catch_hadler): Be sure rtime_address is Pmode if POINTERS_EXTEND_UNSIGNED. diff --git a/gcc/config/alpha/xm-alpha.h b/gcc/config/alpha/xm-alpha.h index 7665127..c04844f 100644 --- a/gcc/config/alpha/xm-alpha.h +++ b/gcc/config/alpha/xm-alpha.h @@ -46,7 +46,7 @@ Boston, MA 02111-1307, USA. */ #if defined(__GNUC__) && !defined(USE_C_ALLOCA) #define alloca __builtin_alloca #else -#if !defined(_WIN32) && !defined(USE_C_ALLOCA) && !defined(OPEN_VMS) +#if !defined(_WIN32) && !defined(USE_C_ALLOCA) && !defined(OPEN_VMS) && !defined(__INTERIX) #include <alloca.h> #else extern void *alloca (); |