summaryrefslogtreecommitdiff
path: root/gcc/alloca.c
diff options
context:
space:
mode:
authormeyering <meyering@138bc75d-0d04-0410-961f-82ee72b054a4>1993-07-13 16:37:01 +0000
committermeyering <meyering@138bc75d-0d04-0410-961f-82ee72b054a4>1993-07-13 16:37:01 +0000
commit3a5ae4a8b70e0a26a0317396e9bcdc7f9c4cd3aa (patch)
treef1e3fcdbfae026bc40b9988ad6733ca3f9d15dd0 /gcc/alloca.c
parentff6f39517ac584dd91fca6fc4a8a1e44c02f01ed (diff)
downloadgcc-3a5ae4a8b70e0a26a0317396e9bcdc7f9c4cd3aa.tar.gz
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4912 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/alloca.c')
-rw-r--r--gcc/alloca.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/alloca.c b/gcc/alloca.c
index c04c0efebdb..9c472ead6df 100644
--- a/gcc/alloca.c
+++ b/gcc/alloca.c
@@ -45,7 +45,7 @@ lose
/* If your stack is a linked list of frames, you have to
provide an "address metric" ADDRESS_FUNCTION macro. */
-#ifdef CRAY
+#if defined (CRAY) && defined (CRAY_STACKSEG_END)
long i00afunc ();
#define ADDRESS_FUNCTION(arg) (char *) i00afunc (&(arg))
#else
@@ -204,7 +204,7 @@ alloca (size)
}
}
-#ifdef CRAY
+#if defined (CRAY) && defined (CRAY_STACKSEG_END)
#ifdef DEBUG_I00AFUNC
#include <stdio.h>