Commit 8b6813aa by Richard Stallman

(gen_label_rtx): If output_bytecode, make a CODE_LABEL

but with different contents.

From-SVN: r5447
parent 73e8e1ec
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment