Commit 0a7dd6e7 by Jeff Law

pa.c (output_call): Use ASM_OUTPUT_INTERNAL_LABEL instead of output_asm_label.

	* pa.c (output_call): Use ASM_OUTPUT_INTERNAL_LABEL instead
	of output_asm_label.

From-SVN: r5207
parent b783df23
......@@ -3782,7 +3782,8 @@ output_call (insn, call_dest, return_pointer)
else
{
xoperands[3] = gen_label_rtx ();
output_asm_label (xoperands[3]);
ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "L",
CODE_LABEL_NUMBER (xoperands[3]));
output_asm_insn ("\n\tbl %0,%r2\n\tldo %1-%3-8(%r2),%r2", xoperands);
}
......
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