re PR rtl-optimization/55512 (Various LRA ICEs with inline-asm)
authorJakub Jelinek <jakub@redhat.com>
Thu, 29 Nov 2012 08:32:32 +0000 (09:32 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Thu, 29 Nov 2012 08:32:32 +0000 (09:32 +0100)
PR rtl-optimization/55512
* gcc.target/i386/pr55512-2.c: Remove unnecessary define.
* gcc.target/i386/pr55512-4.c: Likewise.

From-SVN: r193923

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr55512-2.c
gcc/testsuite/gcc.target/i386/pr55512-4.c

index cea4e76..ad8880a 100644 (file)
@@ -1,3 +1,9 @@
+2012-11-29  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/55512
+       * gcc.target/i386/pr55512-2.c: Remove unnecessary define.
+       * gcc.target/i386/pr55512-4.c: Likewise.
+
 2012-11-29  Ed Smith-Rowland  <3dw4rd@verizon.net>
 
        PR c++/52654
index eec2a88..114710c 100644 (file)
@@ -1,8 +1,6 @@
 /* { dg-do compile } */
 /* { dg-options "-O2" } */
 
-#define __builtin_unreachable() do { } while (0)
-
 int
 foo (int x)
 {
@@ -10,7 +8,6 @@ foo (int x)
            "r" (x + 4), "r" (x + 5), "r" (x + 6), "r" (x + 7),
            "r" (x + 8), "r" (x + 9), "r" (x + 10), "r" (x + 11),
            "r" (x + 12), "r" (x + 13), "r" (x + 14), "r" (x + 15) : : lab);
-  __builtin_unreachable ();
  lab:
   return 0;
 }
index 3fcd11c..250243a 100644 (file)
@@ -1,8 +1,6 @@
 /* { dg-do compile } */
 /* { dg-options "-O2" } */
 
-#define __builtin_unreachable() do { } while (0)
-
 int
 bar (int x)
 {
@@ -11,7 +9,6 @@ bar (int x)
            "r" (x + 8), "r" (x + 9), "r" (x + 10), "r" (x + 11),
            "r" (x + 12), "r" (x + 13), "r" (x + 14), "r" (x + 15),
            "r" (x + 16) : : lab);
-  __builtin_unreachable ();
  lab:
   return 0;
 }