aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@gcc.gnu.org>1993-07-13 16:37:01 +0000
committerJim Meyering <meyering@gcc.gnu.org>1993-07-13 16:37:01 +0000
commit42dcdbe212f263a35a32643852c104264ebde79f (patch)
treef1e3fcdbfae026bc40b9988ad6733ca3f9d15dd0
parent7a87bc57141f13a09196ae48a4cabc120f5f45b6 (diff)
downloadgcc-42dcdbe212f263a35a32643852c104264ebde79f.zip
gcc-42dcdbe212f263a35a32643852c104264ebde79f.tar.gz
gcc-42dcdbe212f263a35a32643852c104264ebde79f.tar.bz2
*** empty log message ***
From-SVN: r4912
-rw-r--r--gcc/alloca.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/alloca.c b/gcc/alloca.c
index c04c0ef..9c472ea 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>