(gen_label_rtx): If output_bytecode, make a CODE_LABEL
authorRichard Stallman <rms@gnu.org>
Fri, 24 Sep 1993 19:22:53 +0000 (19:22 +0000)
committerRichard Stallman <rms@gnu.org>
Fri, 24 Sep 1993 19:22:53 +0000 (19:22 +0000)
but with different contents.

From-SVN: r5447

gcc/emit-rtl.c

index a927fd0a5ceade2b0b8771b054b3fa72313fd1a7..5495a45f39fd111caf382ee106ac47221806332c 100644 (file)
@@ -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;