diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-02-25 16:33:18 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-02-25 09:33:18 -0700 |
commit | 9b8a4e8368b6e0ea383457a77acb361d51309e07 (patch) | |
tree | beacb4afebd57684f651992870ffd528550fec8f /gcc | |
parent | 5a25c64c258935ab114db8c386b23dd091981f12 (diff) | |
download | gcc-9b8a4e8368b6e0ea383457a77acb361d51309e07.zip gcc-9b8a4e8368b6e0ea383457a77acb361d51309e07.tar.gz gcc-9b8a4e8368b6e0ea383457a77acb361d51309e07.tar.bz2 |
* pa.md (call patterns): Lose unused argument to output_call.
From-SVN: r25443
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/config/pa/pa.md | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3ed3247..c68d309 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ Thu Feb 25 16:19:43 1999 Jeffrey A Law (law@cygnus.com) + * pa.md (call patterns): Lose unused argument to output_call. + * print-rtl.c (print_rtl): Print /j and /c for the jump/call flags. 1999-02-25 17:14 -0500 Zack Weinberg <zack@rabi.columbia.edu> diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 5775e20..568863e 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -4150,7 +4150,7 @@ "* { output_arg_descriptor (insn); - return output_call (insn, operands[0], gen_rtx_REG (SImode, 2)); + return output_call (insn, operands[0]); }" [(set_attr "type" "call") (set (attr "length") @@ -4309,7 +4309,7 @@ "* { output_arg_descriptor (insn); - return output_call (insn, operands[1], gen_rtx_REG (SImode, 2)); + return output_call (insn, operands[1]); }" [(set_attr "type" "call") (set (attr "length") |