Commit 73013054 by Uros Bizjak Committed by Uros Bizjak

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
parent c88fc50c
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
......
......@@ -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)
{
......
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