re PR target/30770 (BOOT_CFLAGS="-O2 -g -mtune=nocona" miscompiled the stage 3 compiler)

PR target/30770
        * config/i386/i386.md (expand_movmem_epilogue): Fix typo, mask
        count argument with 0x10, not with 0x16.
        (expand_setmem_epilogue): Ditto.

From-SVN: r122301
This commit is contained in:
Uros Bizjak 2007-02-25 00:29:30 +01:00 committed by Uros Bizjak
parent c88fc50c24
commit 730130547b
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2007-02-24 Uros Bizjak <ubizjak@gmail.com>
PR target/30770
* config/i386/i386.md (expand_movmem_epilogue): Fix typo, mask
count argument with 0x10, not with 0x16.
(expand_setmem_epilogue): Ditto.
2007-02-24 Mike Stump <mrs@apple.com>
* config/i386/i386.c (output_pic_addr_const): Stubify optimized

View File

@ -13538,7 +13538,7 @@ expand_movmem_epilogue (rtx destmem, rtx srcmem,
HOST_WIDE_INT countval = INTVAL (count);
int offset = 0;
if ((countval & 0x16) && max_size > 16)
if ((countval & 0x10) && max_size > 16)
{
if (TARGET_64BIT)
{
@ -13691,7 +13691,7 @@ expand_setmem_epilogue (rtx destmem, rtx destptr, rtx value, rtx count, int max_
HOST_WIDE_INT countval = INTVAL (count);
int offset = 0;
if ((countval & 0x16) && max_size > 16)
if ((countval & 0x10) && max_size > 16)
{
if (TARGET_64BIT)
{