aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2002-12-08 14:03:40 +0000
committerJan Hubicka <jh@suse.cz>2002-12-08 14:03:40 +0000
commit7b81163c379ced8c5fb547803a9baf5b3f2b2545 (patch)
tree9c676bb43c236433e0f4a8e1a8346a852d762ef6
parent6e192549ecf051a5d5801a77484c85a9ead79cb3 (diff)
* i386.c (ix86_expand_int_movcc): Use force_operand instead of constructing
insn directly. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@59937 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/i386/i386.c11
2 files changed, 6 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0ad9fc15a75..890b4a8ceb1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+Sun Dec 8 14:57:39 CET 2002 Jan Hubicka <jh@suse.cz>
+
+ * i386.c (ix86_expand_int_movcc): Use force_operand instead of constructing
+ insn directly.
+
2002-12-07 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md (*iorhi_shift_8): New.
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
index 80ee90eadb9..7337312ac8e 100644
--- a/gcc/config/i386/i386.c
+++ b/gcc/config/i386/i386.c
@@ -9250,16 +9250,7 @@ ix86_expand_int_movcc (operands)
&& (GET_CODE (tmp) != SUBREG || SUBREG_REG (tmp) != out))
{
if (nops == 1)
- {
- rtx clob;
-
- clob = gen_rtx_REG (CCmode, FLAGS_REG);
- clob = gen_rtx_CLOBBER (VOIDmode, clob);
-
- tmp = gen_rtx_SET (VOIDmode, out, tmp);
- tmp = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, tmp, clob));
- emit_insn (tmp);
- }
+ out = force_operand (tmp, out);
else
emit_insn (gen_rtx_SET (VOIDmode, out, tmp));
}