* emit-rtl.c (emit_copy_of_insn_after): Copy insn recog cache too.
authorJan Hubicka <jh@suse.cz>
Tue, 11 Feb 2003 19:47:30 +0000 (20:47 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Tue, 11 Feb 2003 19:47:30 +0000 (19:47 +0000)
From-SVN: r62711

gcc/ChangeLog
gcc/emit-rtl.c

index 614a9b8cced4644de092950f42cf2ebfb03e1ecc..268974126ccc6c85f30fb1e85e2722f5693edc12 100644 (file)
@@ -1,3 +1,7 @@
+Tue Feb 11 20:44:45 CET 2003  Jan Hubicka  <jh@suse.cz>
+
+       * emit-rtl.c (emit_copy_of_insn_after): Copy insn recog cache too.
+
 2003-02-11  Richard Henderson  <rth@redhat.com>
 
        * config/i386/i386.c (ix86_expand_movstr): Fail if esi or edi
index ab950fd19d3ee4f5fcc5ed90c6c2a699be5874fd..396579e6471b4ef76f3c7441fbdf54f607f13b38 100644 (file)
@@ -5718,6 +5718,7 @@ emit_copy_of_insn_after (insn, after)
       XEXP (note1, 0) = p;
       XEXP (note2, 0) = new;
     }
+  INSN_CODE (new) = INSN_CODE (insn);
   return new;
 }