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
This commit is contained in:
Jeff Law 1993-08-24 12:03:33 -06:00
parent b783df230b
commit 0a7dd6e79e
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}