diff options
author | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-31 18:01:13 +0000 |
---|---|---|
committer | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-31 18:01:13 +0000 |
commit | 100797c8d5647a69f8d4754a5336e14dad80f808 (patch) | |
tree | ac557817a629dcfdf4872ed68cf71676fe7db37e /gcc/config | |
parent | ce7e2f0c6f85aaa9b95a00c5df780120ed859d7f (diff) | |
download | gcc-100797c8d5647a69f8d4754a5336e14dad80f808.tar.gz |
2002-05-31 John David Anglin <dave@hiauly1.hia.nrc.ca>
* pa.c (output_millicode_call): Add missing '%' characters.
(output_call): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54111 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/pa/pa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 4ace172d0d0..46d6846f770 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -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); |