From 4ac75a4ea0b47ca6476d70c377196f978b5b6469 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Mon, 5 Dec 1994 11:46:45 -0800 Subject: [PATCH] (copy_loop_body): Reformat CODE_LABEL_NUMBER macro call to avoid HPUX compiler bug. From-SVN: r8609 --- gcc/unroll.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/unroll.c b/gcc/unroll.c index c82266e21cc..787bda817e0 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 -- 2.30.2