diff options
author | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-05-22 01:03:11 +0000 |
---|---|---|
committer | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-05-22 01:03:11 +0000 |
commit | 2b785411c459a847a59e1b980134e8f71e8dbd85 (patch) | |
tree | caef8679017f122961809268806166d9b3586a86 /gcc/calls.c | |
parent | aaa40faeec25d6a17802355474b9e9afb8290c68 (diff) | |
download | gcc-2b785411c459a847a59e1b980134e8f71e8dbd85.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@223513 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index 9cd488d175d..afe61f47d87 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -82,14 +82,6 @@ along with GCC; see the file COPYING3. If not see #include "rtl-chkp.h" -/* Redefine STACK_GROWS_DOWNWARD in terms of 0 or 1. */ -#ifdef STACK_GROWS_DOWNWARD -# undef STACK_GROWS_DOWNWARD -# define STACK_GROWS_DOWNWARD 1 -#else -# define STACK_GROWS_DOWNWARD 0 -#endif - /* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */ #define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT) |