Commit bc9aee2d by Richard Stallman

(output_addr_const): Always use FILE, not asm_out_file.

From-SVN: r2508
parent c2f4acb7
......@@ -2229,12 +2229,12 @@ output_addr_const (file, x)
case LABEL_REF:
ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (XEXP (x, 0)));
assemble_name (asm_out_file, buf);
assemble_name (file, buf);
break;
case CODE_LABEL:
ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
assemble_name (asm_out_file, buf);
assemble_name (file, buf);
break;
case CONST_INT:
......
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