From: Jeff Law Date: Tue, 24 Aug 1993 18:03:33 +0000 (-0600) Subject: pa.c (output_call): Use ASM_OUTPUT_INTERNAL_LABEL instead of output_asm_label. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0a7dd6e79ea22487032f1e66fc911f70e58cec2e;p=gcc.git 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 --- diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 4ab34a5288d..8b7cdfe27c6 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -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); }