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]
Other format: [Raw text]

m32r.md: Replace gen_sequence with get_insns


Hi Guys,

  I am applying the patch below to allow the m32r port to build after
  David Miller's change to remove the SEQUENCE rtl.

Cheers
        Nick

2002-06-17  Nick Clifton  <nickc@cambridge.redhat.com>

	* config/m32r/m32r.md: Replace gen_sequence with get_insns.

Index: gcc/config/m32r/m32r.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/m32r/m32r.md,v
retrieving revision 1.23
diff -c -3 -p -w -r1.23 m32r.md
*** gcc/config/m32r/m32r.md	9 Jan 2002 11:02:07 -0000	1.23
--- gcc/config/m32r/m32r.md	17 Jun 2002 07:15:42 -0000
***************
*** 1681,1687 ****
    start_sequence ();
    emit_insn (gen_cmp_ltusi_insn (op1, GEN_INT (1)));
    emit_insn (gen_movcc_insn (op0));
!   operands[3] = gen_sequence ();
    end_sequence ();
  }")
  
--- 1681,1687 ----
    start_sequence ();
    emit_insn (gen_cmp_ltusi_insn (op1, GEN_INT (1)));
    emit_insn (gen_movcc_insn (op0));
!   operands[3] = get_insns ();
    end_sequence ();
  }")
  
***************
*** 1735,1741 ****
  
    emit_insn (gen_cmp_ltusi_insn (op3, GEN_INT (1)));
    emit_insn (gen_movcc_insn (op0));
!   operands[4] = gen_sequence ();
    end_sequence ();
  }")
  
--- 1735,1741 ----
  
    emit_insn (gen_cmp_ltusi_insn (op3, GEN_INT (1)));
    emit_insn (gen_movcc_insn (op0));
!   operands[4] = get_insns ();
    end_sequence ();
  }")
  


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