* emit-rtl.c (emit_copy_of_insn_after): Copy insn recog cache too.

From-SVN: r62711
This commit is contained in:
Jan Hubicka 2003-02-11 20:47:30 +01:00 committed by Jan Hubicka
parent d0a5295aa6
commit 6f0d35660b
2 changed files with 5 additions and 0 deletions

View 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

View 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;
}