pa.c (output_call): Use ASM_OUTPUT_INTERNAL_LABEL instead of output_asm_label.
authorJeff Law <law@gcc.gnu.org>
Tue, 24 Aug 1993 18:03:33 +0000 (12:03 -0600)
committerJeff Law <law@gcc.gnu.org>
Tue, 24 Aug 1993 18:03:33 +0000 (12:03 -0600)
* pa.c (output_call): Use ASM_OUTPUT_INTERNAL_LABEL instead
of output_asm_label.

From-SVN: r5207

gcc/config/pa/pa.c

index 4ab34a5288d6c33a70f16580e2c02137665bd0d2..8b7cdfe27c629767f59e6a77027b8a068ca5e600 100644 (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);
     }