From 6f0d35660b01a3b08ed8899c37fca11c20464a22 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Tue, 11 Feb 2003 20:47:30 +0100 Subject: [PATCH] * emit-rtl.c (emit_copy_of_insn_after): Copy insn recog cache too. From-SVN: r62711 --- gcc/ChangeLog | 4 ++++ gcc/emit-rtl.c | 1 + 2 files changed, 5 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 614a9b8cced..268974126cc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Tue Feb 11 20:44:45 CET 2003 Jan Hubicka + + * emit-rtl.c (emit_copy_of_insn_after): Copy insn recog cache too. + 2003-02-11 Richard Henderson * config/i386/i386.c (ix86_expand_movstr): Fail if esi or edi diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index ab950fd19d3..396579e6471 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -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; } -- 2.30.2