Commit ce8076ad by Jakub Jelinek Committed by Jakub Jelinek

i386.c (ix86_expand_int_movcc): Truncate to proper mode.

	* config/i386/i386.c (ix86_expand_int_movcc): Truncate to proper
	mode.

From-SVN: r53099
parent 0abc082a
2002-05-03 Jakub Jelinek <jakub@redhat.com>
* config/i386/i386.c (ix86_expand_int_movcc): Truncate to proper
mode.
2002-05-03 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 2002-05-03 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* doc/install.texi (Installing): Mention GCC 3.1 buildstats. * doc/install.texi (Installing): Mention GCC 3.1 buildstats.
......
...@@ -7994,7 +7994,9 @@ ix86_expand_int_movcc (operands) ...@@ -7994,7 +7994,9 @@ ix86_expand_int_movcc (operands)
code = LTU; code = LTU;
else else
code = GEU; code = GEU;
ix86_compare_op1 = GEN_INT (INTVAL (ix86_compare_op1) + 1); ix86_compare_op1
= gen_int_mode (INTVAL (ix86_compare_op1) + 1,
GET_MODE (ix86_compare_op0));
} }
start_sequence (); start_sequence ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment