pa.c (output_millicode_call): Add missing '%' characters.
authorJohn David Anglin <dave@hiauly1.hia.nrc.ca>
Fri, 31 May 2002 18:01:13 +0000 (18:01 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Fri, 31 May 2002 18:01:13 +0000 (18:01 +0000)
2002-05-31  John David Anglin  <dave@hiauly1.hia.nrc.ca>

* pa.c (output_millicode_call): Add missing '%' characters.
(output_call): Likewise.

From-SVN: r54111

gcc/ChangeLog
gcc/config/pa/pa.c

index fca3f2c60410c5dc46ab0d86f7c63e87922c5b43..2cd349fca5d6c502e381518b77e88607007050a2 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-31  John David Anglin  <dave@hiauly1.hia.nrc.ca>
+
+       * pa.c (output_millicode_call): Add missing '%' characters.
+       (output_call): Likewise.
+
 2002-05-31  David Edelsohn  <edelsohn@gnu.org>
 
        * config/rs6000/xcoff.h (HOT_TEXT_SECTION_NAME): Define.
index 4ace172d0d084792a1b448d184790d83ebafe18a..46d6846f770703b6232dc22272f473ac8e8cdc5f 100644 (file)
@@ -6100,7 +6100,7 @@ output_millicode_call (insn, call_dest)
          xoperands[0] = call_dest;
          output_asm_insn ("ldil L%%%0,%3", xoperands);
          if (TARGET_PA_20)
-           output_asm_insn ("be,l R%%%0(%%sr4,%3),%sr0,%r31", xoperands);
+           output_asm_insn ("be,l R%%%0(%%sr4,%3),%%sr0,%%r31", xoperands);
          else
            output_asm_insn ("ble R%%%0(%%sr4,%3)", xoperands);
          output_asm_insn ("nop", xoperands);
@@ -6359,7 +6359,7 @@ output_call (insn, call_dest, sibcall)
                 add in the low part in the branch instruction.  */
              output_asm_insn ("ldil L%%$$dyncall,%%r2", xoperands);
              if (TARGET_PA_20)
-               output_asm_insn ("be,l R%%$$dyncall(%%sr4,%%r2),%sr0,%r31",
+               output_asm_insn ("be,l R%%$$dyncall(%%sr4,%%r2),%%sr0,%%r31",
                                 xoperands);
              else
                output_asm_insn ("ble R%%$$dyncall(%%sr4,%%r2)", xoperands);