]> gcc.gnu.org Git - gcc.git/commitdiff
Replace gen_sequence with get_insns.
authorNick Clifton <nickc@cambridge.redhat.com>
Mon, 17 Jun 2002 07:20:15 +0000 (07:20 +0000)
committerNick Clifton <nickc@gcc.gnu.org>
Mon, 17 Jun 2002 07:20:15 +0000 (07:20 +0000)
From-SVN: r54695

gcc/ChangeLog
gcc/config/m32r/m32r.md

index 2d2729ea23952305fdea35acaaa19415dc1595d3..4495939c516efa32a8db41132119538c054fa63b 100644 (file)
@@ -1,3 +1,7 @@
+2002-06-17  Nick Clifton  <nickc@cambridge.redhat.com>
+
+       * config/m32r/m32r.md: Replace gen_sequence with get_insns.
+
 2002-06-16  Richard Henderson  <rth@redhat.com>
 
        * config/i386/i386.h (BIGGEST_FIELD_ALIGNMENT): Define instead
index a8e28db0ba987a9128ad5faff6f190b237e7fc07..4de64b052723ac1c4e14f49292809eb92c69fab2 100644 (file)
   start_sequence ();
   emit_insn (gen_cmp_ltusi_insn (op1, GEN_INT (1)));
   emit_insn (gen_movcc_insn (op0));
-  operands[3] = gen_sequence ();
+  operands[3] = get_insns ();
   end_sequence ();
 }")
 
 
   emit_insn (gen_cmp_ltusi_insn (op3, GEN_INT (1)));
   emit_insn (gen_movcc_insn (op0));
-  operands[4] = gen_sequence ();
+  operands[4] = get_insns ();
   end_sequence ();
 }")
 
This page took 0.109025 seconds and 5 git commands to generate.