From: Richard Kenner Date: Sun, 23 Jan 1994 23:56:41 +0000 (-0500) Subject: (do_jump_for_compare): Initialize JUMP_LABEL for the branch insn X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=127e4d19bd9e7e6df4724e81da15722f7bc71481;p=gcc.git (do_jump_for_compare): Initialize JUMP_LABEL for the branch insn before trying to invert it. From-SVN: r6418 --- diff --git a/gcc/expr.c b/gcc/expr.c index b499ffc15e2..bdf0b701c55 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -8770,6 +8770,7 @@ do_jump_for_compare (comparison, if_false_label, if_true_label) if (branch != get_last_insn ()) abort (); + JUMP_LABEL (branch) = if_false_label; if (! invert_jump (branch, if_false_label)) { if_true_label = gen_label_rtx ();