diff options
author | Jeff Law <law@gcc.gnu.org> | 1993-12-14 16:00:41 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1993-12-14 16:00:41 -0700 |
commit | 9473a84ff3df4e9721bfb7e767f37ec453dd9c2c (patch) | |
tree | 3c82a3d7a7a3e763dac155d51c650d4dc8fa2096 | |
parent | 94c17ca5e6bb46a16a600826c707fd4691bb2616 (diff) | |
download | gcc-9473a84ff3df4e9721bfb7e767f37ec453dd9c2c.zip gcc-9473a84ff3df4e9721bfb7e767f37ec453dd9c2c.tar.gz gcc-9473a84ff3df4e9721bfb7e767f37ec453dd9c2c.tar.bz2 |
pa.c (output_call): Put temporary label after the RP adjustment.
* pa.c (output_call): Put temporary label after the
RP adjustment. "- 8" adjustment is no longer necessary.
From-SVN: r6235
-rw-r--r-- | gcc/config/pa/pa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 299e3e4..7fafda7 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -3800,9 +3800,9 @@ output_call (insn, call_dest, return_pointer) else { xoperands[3] = gen_label_rtx (); + output_asm_insn ("\n\tbl %0,%r2\n\tldo %1-%3(%r2),%r2", xoperands); 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); } /* Delete the jump. */ |