xm-alpha.h (alloca.h): Add Interix to list of special machines that don't like alloca...
authorDonn Terry <donn@interix.com>
Thu, 15 Apr 1999 22:47:13 +0000 (22:47 +0000)
committerJeff Law <law@gcc.gnu.org>
Thu, 15 Apr 1999 22:47:13 +0000 (16:47 -0600)
        * 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

gcc/ChangeLog
gcc/config/alpha/xm-alpha.h

index 099aecc46f25a266d2a979b7f591b1bda4aa8a39..4cbf8661ff3380d052cf304dc3a73e4695461d89 100644 (file)
@@ -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.
 
index 7665127b7147ae7a6477e90f3d8f97dfd0e75890..c04844fdacdeb7cc4159cde4ed09ba300343a179 100644 (file)
@@ -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 ();