This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

pa.md trivial patch



output_call only has/uses 2 arguments.  References in pa.md were passing
3 arguments.


        * pa.md (call patterns): Lose unused argument to output_call.

Index: pa.md
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/config/pa/pa.md,v
retrieving revision 1.19
diff -c -3 -p -r1.19 pa.md
*** pa.md	1999/01/30 13:50:10	1.19
--- pa.md	1999/02/26 00:30:50
***************
*** 4150,4156 ****
    "*
  {
    output_arg_descriptor (insn);
!   return output_call (insn, operands[0], gen_rtx_REG (SImode, 2));
  }"
    [(set_attr "type" "call")
     (set (attr "length")
--- 4150,4156 ----
    "*
  {
    output_arg_descriptor (insn);
!   return output_call (insn, operands[0]);
  }"
    [(set_attr "type" "call")
     (set (attr "length")
***************
*** 4309,4315 ****
    "*
  {
    output_arg_descriptor (insn);
!   return output_call (insn, operands[1], gen_rtx_REG (SImode, 2));
  }"
    [(set_attr "type" "call")
     (set (attr "length")
--- 4309,4315 ----
    "*
  {
    output_arg_descriptor (insn);
!   return output_call (insn, operands[1]);
  }"
    [(set_attr "type" "call")
     (set (attr "length")


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]