From 0a7dd6e79ea22487032f1e66fc911f70e58cec2e Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Tue, 24 Aug 1993 12:03:33 -0600 Subject: [PATCH] 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 --- gcc/config/pa/pa.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } -- 2.30.2