diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1994-12-05 11:46:45 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1994-12-05 11:46:45 -0800 |
commit | 4ac75a4ea0b47ca6476d70c377196f978b5b6469 (patch) | |
tree | 1a844bb2be9bc60e055d8757ec6e7750b2e45422 /gcc | |
parent | 5120098826508feefce4783726adac89fdf5f653 (diff) | |
download | gcc-4ac75a4ea0b47ca6476d70c377196f978b5b6469.zip gcc-4ac75a4ea0b47ca6476d70c377196f978b5b6469.tar.gz gcc-4ac75a4ea0b47ca6476d70c377196f978b5b6469.tar.bz2 |
(copy_loop_body): Reformat CODE_LABEL_NUMBER macro call
to avoid HPUX compiler bug.
From-SVN: r8609
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/unroll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c index c82266e..787bda8 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -1810,8 +1810,8 @@ copy_loop_body (copy_start, copy_end, map, exit_label, last_iteration, /* An unrecognizable jump insn, probably the entry jump for a switch statement. This label must have been mapped, so just use the label_map to get the new jump label. */ - JUMP_LABEL (copy) = map->label_map[CODE_LABEL_NUMBER - (JUMP_LABEL (insn))]; + JUMP_LABEL (copy) + = map->label_map[CODE_LABEL_NUMBER (JUMP_LABEL (insn))]; } /* If this is a non-local jump, then must increase the label |