diff options
author | Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz> | 2003-07-31 20:37:23 +0200 |
---|---|---|
committer | Zdenek Dvorak <rakdver@gcc.gnu.org> | 2003-07-31 18:37:23 +0000 |
commit | 9143c6b76b4b7f198901e441cd06357a3b9c573a (patch) | |
tree | 4664f9f509dc83b747706d7f8069be92bf0f9d28 | |
parent | b7de5864618a5825351f1262287b0bcaaaf08db5 (diff) | |
download | gcc-9143c6b76b4b7f198901e441cd06357a3b9c573a.zip gcc-9143c6b76b4b7f198901e441cd06357a3b9c573a.tar.gz gcc-9143c6b76b4b7f198901e441cd06357a3b9c573a.tar.bz2 |
combine.c (try_combine): Set JUMP_LABEL for newly created unconditional jump.
* combine.c (try_combine): Set JUMP_LABEL for newly created
unconditional jump.
From-SVN: r70010
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/combine.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index caa596b..df45676 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2003-07-31 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz> + * combine.c (try_combine): Set JUMP_LABEL for newly created + unconditional jump. + +2003-07-31 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz> + * fold-const.c (fold): Fold some comparisons of bit operations. Thu Jul 31 19:49:53 CEST 2003 Jan Hubicka <jh@suse.cz> diff --git a/gcc/combine.c b/gcc/combine.c index e3c1cf6..7e83706 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -2764,6 +2764,7 @@ try_combine (rtx i3, rtx i2, rtx i1, int *new_direct_jump_p) if (returnjump_p (i3) || any_uncondjump_p (i3)) { *new_direct_jump_p = 1; + mark_jump_label (PATTERN (i3), i3, 0); if ((temp = next_nonnote_insn (i3)) == NULL_RTX || GET_CODE (temp) != BARRIER) |