diff options
author | Zack Weinberg <zackw@panix.com> | 2001-08-12 01:46:15 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2001-08-12 01:46:15 +0000 |
commit | 31cdd4996b4223793a65643fcbf69163c3623258 (patch) | |
tree | 4a0e1181985ae01e6097206b29b38dff92c54a52 /gcc/function.c | |
parent | 2b2202656c555a659103f4ed7e140c5784613f33 (diff) | |
download | gcc-31cdd4996b4223793a65643fcbf69163c3623258.zip gcc-31cdd4996b4223793a65643fcbf69163c3623258.tar.gz gcc-31cdd4996b4223793a65643fcbf69163c3623258.tar.bz2 |
defaults.h: Define PREFERRED_STACK_BOUNDARY to STACK_BOUNDARY if not already defined.
* defaults.h: Define PREFERRED_STACK_BOUNDARY to
STACK_BOUNDARY if not already defined.
* calls.c, function.c, reload1.c, explow.c: Don't default
PREFERRED_STACK_BOUNDARY. Remove all #if/#ifdef on
PREFERRRED_STACK_BOUNDARY and/or STACK_BOUNDARY.
* explow.c (allocate_dynamic_stack_space): Change unsafe #if
to run-time test.
* doc/tm.texi: Document that STACK_BOUNDARY is required;
clarify difference between it and PREFERRED_STACK_BOUNDARY.
From-SVN: r44814
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/function.c b/gcc/function.c index a0cfa00..7a03d9c 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -67,10 +67,6 @@ Boston, MA 02111-1307, USA. */ #define LOCAL_ALIGNMENT(TYPE, ALIGNMENT) ALIGNMENT #endif -#ifndef PREFERRED_STACK_BOUNDARY -#define PREFERRED_STACK_BOUNDARY STACK_BOUNDARY -#endif - /* Some systems use __main in a way incompatible with its use in gcc, in these cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to give the same symbol without quotes for an alternative entry point. You |