i386.c (emit_i387_cw_initialization): Fix masking operand value.

* config/i386/i386.c (emit_i387_cw_initialization)
	<case I387_CW_ROUNDEVEN>: Fix masking operand value.

From-SVN: r274934
This commit is contained in:
Uros Bizjak 2019-08-26 21:18:30 +02:00
parent 22fca489ea
commit 0e88315116
2 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,9 @@
2019-08-23 Martin Sebor <msebor@redhat.com>
2019-08-26 Uroš Bizjak <ubizjak@gmail.com>
* config/i386/i386.c (emit_i387_cw_initialization)
<case I387_CW_ROUNDEVEN>: Fix masking operand value.
2019-08-26 Martin Sebor <msebor@redhat.com>
PR c++/83431
* gimple-ssa-sprintf.c (pass_data_sprintf_length): Remove object.

View File

@ -13785,7 +13785,7 @@ emit_i387_cw_initialization (int mode)
{
case I387_CW_ROUNDEVEN:
/* round to nearest */
emit_insn (gen_andhi3 (reg, reg, GEN_INT (0x0c00)));
emit_insn (gen_andhi3 (reg, reg, GEN_INT (~0x0c00)));
slot = SLOT_CW_ROUNDEVEN;
break;