aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2003-02-11 20:47:30 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2003-02-11 19:47:30 +0000
commit6f0d35660b01a3b08ed8899c37fca11c20464a22 (patch)
tree1b93533782b60e584e0cb058d5a29925f2382525 /gcc
parentd0a5295aa6b3095b2a7051154c6fbe6f53615829 (diff)
downloadgcc-6f0d35660b01a3b08ed8899c37fca11c20464a22.zip
gcc-6f0d35660b01a3b08ed8899c37fca11c20464a22.tar.gz
gcc-6f0d35660b01a3b08ed8899c37fca11c20464a22.tar.bz2
* emit-rtl.c (emit_copy_of_insn_after): Copy insn recog cache too.
From-SVN: r62711
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/emit-rtl.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 614a9b8..2689741 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c
index ab950fd..396579e6 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;
}