aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-05-29 08:55:44 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1995-05-29 08:55:44 -0400
commit57f2483b4b717a0526d7cd16ce57acb8802ad10f (patch)
tree5d02c23d5df616d42daa617c55a26dee1dac09f2
parentef76d747c395e2eb627ed7284f622c9c30f2abcf (diff)
downloadgcc-57f2483b4b717a0526d7cd16ce57acb8802ad10f.zip
gcc-57f2483b4b717a0526d7cd16ce57acb8802ad10f.tar.gz
gcc-57f2483b4b717a0526d7cd16ce57acb8802ad10f.tar.bz2
Don't include alloca.h for winnt.
From-SVN: r9833
-rw-r--r--gcc/config/alpha/xm-alpha.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/alpha/xm-alpha.h b/gcc/config/alpha/xm-alpha.h
index 8a2ec95..9ac9e40 100644
--- a/gcc/config/alpha/xm-alpha.h
+++ b/gcc/config/alpha/xm-alpha.h
@@ -41,7 +41,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define FATAL_EXIT_CODE 33
/* If not compiled with GNU C, use the builtin alloca. */
-#ifndef __GNUC__
+#if !defined(__GNUC__) && !defined(_WIN32)
#include <alloca.h>
#else
extern void *alloca ();