diff options
author | J"orn Rennecke <amylaar@cygnus.co.uk> | 1998-03-11 07:12:31 +0000 |
---|---|---|
committer | Joern Rennecke <amylaar@gcc.gnu.org> | 1998-03-11 07:12:31 +0000 |
commit | a8aa4e0b90b649cdf52e3ba54671f8a4a48df50a (patch) | |
tree | b75589bcc86f0a7fbf0f1f409b6becd7e63d3054 /gcc/final.c | |
parent | 6af3488510bf96c43ef3aecb5f93c6ba1ad43387 (diff) | |
download | gcc-a8aa4e0b90b649cdf52e3ba54671f8a4a48df50a.zip gcc-a8aa4e0b90b649cdf52e3ba54671f8a4a48df50a.tar.gz gcc-a8aa4e0b90b649cdf52e3ba54671f8a4a48df50a.tar.bz2 |
final.c (shorten_branches): Remove conditionalizing on SHORTEN_WITH_ADJUST_INSN_LENGTH
* final.c (shorten_branches): Remove conditionalizing on
SHORTEN_WITH_ADJUST_INSN_LENGTH
* sh.h, pa.h (SHORTEN_WITH_ADJUST_INSN_LENGTH): Remove.
From-SVN: r18470
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/final.c b/gcc/final.c index 89054a8..b1a8707 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -1266,11 +1266,9 @@ shorten_branches (first) insn = NEXT_INSN (insn)) { int new_length; -#ifdef SHORTEN_WITH_ADJUST_INSN_LENGTH #ifdef ADJUST_INSN_LENGTH int tmp_length; #endif -#endif int length_align; uid = INSN_UID (insn); @@ -1444,14 +1442,12 @@ shorten_branches (first) insn_current_address += new_length; } -#ifdef SHORTEN_WITH_ADJUST_INSN_LENGTH #ifdef ADJUST_INSN_LENGTH /* If needed, do any adjustment. */ tmp_length = new_length; ADJUST_INSN_LENGTH (insn, new_length); insn_current_address += (new_length - tmp_length); #endif -#endif if (new_length != insn_lengths[uid]) { |