diff options
author | Bernd Schmidt <crux@pool.informatik.rwth-aachen.de> | 1998-11-19 22:47:55 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-11-19 15:47:55 -0700 |
commit | c795bca92313e05fc873321038456afc445b9557 (patch) | |
tree | 310800560c2d56240298d18712cd2147a03cd10c /gcc/expr.c | |
parent | 9f5a2691a147626d10fba7bc366a059678c606e9 (diff) | |
download | gcc-c795bca92313e05fc873321038456afc445b9557.zip gcc-c795bca92313e05fc873321038456afc445b9557.tar.gz gcc-c795bca92313e05fc873321038456afc445b9557.tar.bz2 |
expr.c (STACK_BYTES): Delete unused macro.
* expr.c (STACK_BYTES): Delete unused macro.
* calls.c: Provide default for PREFERRED_STACK_BOUNDARY.
(STACK_BYTES): Use PREFERRED_STACK_BOUNDARY, not STACK_BOUNDARY.
(expand_call): Likewise.
(emit_library_call): Likewise.
(emit_library_call_value): Likewise.
* function.c: Provide default for PREFERRED_STACK_BOUNDARY.
(STACK_BYTES): Use PREFERRED_STACK_BOUNDARY, not STACK_BOUNDARY.
* explow.c: Provide default for PREFERRED_STACK_BOUNDARY.
(round_push): Use PREFERRED_STACK_BOUNDARY, not STACK_BOUNDARY.
(allocate_dynamic_stack_space): Likewise.
* tm.texi (PREFERRED_STACK_BOUNDARY): Document new macro.
(STACK_BOUNDARY): Update description to reflect the new situation.
From-SVN: r23730
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -65,9 +65,6 @@ Boston, MA 02111-1307, USA. */ #endif #endif -/* Like STACK_BOUNDARY but in units of bytes, not bits. */ -#define STACK_BYTES (STACK_BOUNDARY / BITS_PER_UNIT) - /* Assume that case vectors are not pc-relative. */ #ifndef CASE_VECTOR_PC_RELATIVE #define CASE_VECTOR_PC_RELATIVE 0 |