From: Richard Stallman Date: Fri, 24 Sep 1993 19:22:53 +0000 (+0000) Subject: (gen_label_rtx): If output_bytecode, make a CODE_LABEL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8b6813aad191cb33e3f4172ad0051fd2609219e9;p=gcc.git (gen_label_rtx): If output_bytecode, make a CODE_LABEL but with different contents. From-SVN: r5447 --- diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index a927fd0a5ce..5495a45f39f 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -1244,9 +1244,9 @@ gen_label_rtx () { register rtx label; - label = output_bytecode - ? bc_gen_rtx (0, 0, bc_get_bytecode_label ()) - : gen_rtx (CODE_LABEL, VOIDmode, 0, 0, 0, label_num++, NULL_PTR); + label = (output_bytecode + ? gen_rtx (CODE_LABEL, VOIDmode, NULL, bc_get_bytecode_label ()) + : gen_rtx (CODE_LABEL, VOIDmode, 0, 0, 0, label_num++, NULL_PTR)); LABEL_NUSES (label) = 0; return label;