diff options
author | Trevor Saunders <tbsaunde+gcc@tbsaunde.org> | 2015-05-22 01:03:11 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2015-05-22 01:03:11 +0000 |
commit | 62f9f30bfbd23c0e7ca832e40cbad4092789e8dd (patch) | |
tree | caef8679017f122961809268806166d9b3586a86 /gcc/config/epiphany | |
parent | 47d30549f5d8a59f95202a0ddebf281d98230528 (diff) | |
download | gcc-62f9f30bfbd23c0e7ca832e40cbad4092789e8dd.zip gcc-62f9f30bfbd23c0e7ca832e40cbad4092789e8dd.tar.gz gcc-62f9f30bfbd23c0e7ca832e40cbad4092789e8dd.tar.bz2 |
always define STACK_GROWS_DOWNWARD
gcc/c-family/ChangeLog:
2015-05-20 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* c-cppbuiltin.c (c_cpp_builtins): Check the value of
STACK_GROWS_DOWNWARD rather than if it is defined.
gcc/ChangeLog:
2015-05-20 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* *.c: Check the value of STACK_GROWS_DOWNWARD rather than if it
is defined.
* config/**/*.h: Define STACK_GROWS_DOWNWARD to an integer.
* defaults.h: Provide default for STACK_GROWS_DOWNWARD.
* doc/tm.texi.in: Update references to STACK_GROWS_DOWNWARD.
* doc/tm.texi: Regenerate.
From-SVN: r223513
Diffstat (limited to 'gcc/config/epiphany')
-rw-r--r-- | gcc/config/epiphany/epiphany.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/epiphany/epiphany.h b/gcc/config/epiphany/epiphany.h index dab368c..5515edbe 100644 --- a/gcc/config/epiphany/epiphany.h +++ b/gcc/config/epiphany/epiphany.h @@ -467,7 +467,7 @@ typedef struct GTY (()) machine_function /* Define this macro if pushing a word onto the stack moves the stack pointer to a smaller address. */ -#define STACK_GROWS_DOWNWARD +#define STACK_GROWS_DOWNWARD 1 /* Define this to nonzero if the nominal address of the stack frame is at the high-address end of the local variables; |