From 8b6813aad191cb33e3f4172ad0051fd2609219e9 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Fri, 24 Sep 1993 19:22:53 +0000 Subject: [PATCH] (gen_label_rtx): If output_bytecode, make a CODE_LABEL but with different contents. From-SVN: r5447 --- gcc/emit-rtl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.30.2