diff options
author | John David Anglin <danglin@gcc.gnu.org> | 2019-10-17 22:39:43 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2019-10-17 22:39:43 +0000 |
commit | 274ec8c4f6ed14cf07fe047017b097e5737f93c8 (patch) | |
tree | 05a0cb068306c7fd11015759f339fac63c83a50e /gcc/config | |
parent | 928a7c35ae25f4921611a83b5e7c44d4cdc5e728 (diff) | |
download | gcc-274ec8c4f6ed14cf07fe047017b097e5737f93c8.zip gcc-274ec8c4f6ed14cf07fe047017b097e5737f93c8.tar.gz gcc-274ec8c4f6ed14cf07fe047017b097e5737f93c8.tar.bz2 |
pa.c (pa_output_indirect_call): Fix typos in last change.
* config/pa/pa.c (pa_output_indirect_call): Fix typos in last change.
From-SVN: r277135
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/pa/pa.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index d8aff71..7412835 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -8228,22 +8228,22 @@ pa_output_indirect_call (rtx_insn *insn, rtx call_dest) if (TARGET_NO_SPACE_REGS) { pa_output_arg_descriptor (insn); - output_asm_insn ("bl .+8,%rp\b\t" - "ldo 20(%r2),%r2\n\t" - "extru,<> %r22,30,1,%r0\n\t" - "bv,n %%r0(%r22)\n\t" + output_asm_insn ("bl .+8,%%r2\n\t" + "ldo 20(%%r2),%%r2\n\t" + "extru,<> %%r22,30,1,%%r0\n\t" + "bv,n %%r0(%%r22)\n\t" "ldw -2(%%r22),%%r21\n\t" - "bv %%r0(%r21)\n\t" + "bv %%r0(%%r21)\n\t" "ldw 2(%%r22),%%r19", xoperands); return ""; } if (TARGET_PA_20) { pa_output_arg_descriptor (insn); - output_asm_insn ("bl .+8,%%r2\b\t" + output_asm_insn ("bl .+8,%%r2\n\t" "ldo 24(%%r2),%%r2\n\t" "stw %%r2,-24(%%sp)\n\t" - "extru,<> %r22,30,1,%r0\n\t" + "extru,<> %r22,30,1,%%r0\n\t" "bve,n (%%r22)\n\t" "ldw -2(%%r22),%%r21\n\t" "bve (%%r21)\n\t" |