]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR target/30770 (BOOT_CFLAGS="-O2 -g -mtune=nocona" miscompiled the stage 3 compiler)
authorUros Bizjak <ubizjak@gmail.com>
Sat, 24 Feb 2007 23:29:30 +0000 (00:29 +0100)
committerUros Bizjak <uros@gcc.gnu.org>
Sat, 24 Feb 2007 23:29:30 +0000 (00:29 +0100)
        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

gcc/ChangeLog
gcc/config/i386/i386.c

index e05b854f5a5019bfea8e2e7e8c16de4a76916b2a..10a65c0a37df480f2672e2567ed7441f7ed83444 100644 (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
index 5acf121b209ed0401a3b7afea131e3ce168cb53d..db074413086e1602caeafb7da66bf9014cc8d9e5 100644 (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)
            {