re PR middle-end/78691 (ICE compiling Linux boot code)
authorBin Cheng <bin.cheng@arm.com>
Wed, 7 Dec 2016 10:14:58 +0000 (10:14 +0000)
committerBin Cheng <amker@gcc.gnu.org>
Wed, 7 Dec 2016 10:14:58 +0000 (10:14 +0000)
PR tree-optimization/78691
* match.pd ((convert1 (minmax ((convert2 (x) c)))) -> minmax (x c)):
Require integral type for the outer expression.
gcc/testsuite
PR tree-optimization/78691
* gcc.target/i386/pr78691-i386.c: New test.
* gcc.target/powerpc/pr78691-ppc.c: New test.

From-SVN: r243335

gcc/ChangeLog
gcc/match.pd
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr78691-i386.c [new file with mode: 0644]
gcc/testsuite/gcc.target/powerpc/pr78691-ppc.c [new file with mode: 0644]

index c1c148a536beeb02070227f03dd0ef9067b52a88..4f7657050268c3781928865a761bc73d57aa61aa 100644 (file)
@@ -1,3 +1,9 @@
+2016-12-07  Bin Cheng  <bin.cheng@arm.com>
+
+       PR tree-optimization/78691
+       * match.pd ((convert1 (minmax ((convert2 (x) c)))) -> minmax (x c)):
+       Require integral type for the outer expression.
+
 2016-12-07  Naveen H.S  <Naveen.Hurugalawadi@cavium.com>
 
        * config/aarch64/aarch64.c
index 1fe003ba1582cf26df710915d164aa7b5dbd71c2..feaa4a14478c0a682f07240b706dfe072eea6e9f 100644 (file)
@@ -1378,7 +1378,8 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
 (for minmax (min max)
  (simplify
   (convert (minmax@0 (convert @1) INTEGER_CST@2))
-  (if (types_match (@1, type) && int_fits_type_p (@2, type)
+  (if (INTEGRAL_TYPE_P (type)
+       && types_match (@1, type) && int_fits_type_p (@2, type)
        && TYPE_SIGN (TREE_TYPE (@0)) == TYPE_SIGN (type)
        && TYPE_PRECISION (TREE_TYPE (@0)) > TYPE_PRECISION (type))
    (minmax @1 (convert @2)))))
index 2b9aad0d723a0a907b7d835c6004be7608b26c89..eeeae2ec16df8f42c5a5db6d68487ca5287dd7e9 100644 (file)
@@ -1,3 +1,9 @@
+2016-12-07  Bin Cheng  <bin.cheng@arm.com>
+
+       PR tree-optimization/78691
+       * gcc.target/i386/pr78691-i386.c: New test.
+       * gcc.target/powerpc/pr78691-ppc.c: New test.
+
 2016-12-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
 
        * gcc.target/i386/pr70322-1.c: Add -mno-stackrealign to dg-options.
diff --git a/gcc/testsuite/gcc.target/i386/pr78691-i386.c b/gcc/testsuite/gcc.target/i386/pr78691-i386.c
new file mode 100644 (file)
index 0000000..f4b8855
--- /dev/null
@@ -0,0 +1,14 @@
+/* PR tree-optimization/78691 */
+/* { dg-options "-Os -m16" } */
+
+int fn1(char *p1, char *p2) {
+  int a;
+  for (;;)
+    switch (*p2) {
+    case 'c':
+      while (--a > 0)
+        *p1++ = ' ';
+      p1++;
+      a--;
+    }
+}
diff --git a/gcc/testsuite/gcc.target/powerpc/pr78691-ppc.c b/gcc/testsuite/gcc.target/powerpc/pr78691-ppc.c
new file mode 100644 (file)
index 0000000..73e3c87
--- /dev/null
@@ -0,0 +1,18 @@
+/* PR tree-optimization/78691 */
+/* { dg-options "-Os -m32" } */
+
+int *b;
+int fn1() {
+  char *c;
+  int a;
+  for (;;)
+    switch (*b) {
+    case 'c':
+      while (--a > 0)
+        *c++ = ' ';
+      c++;
+      if (a)
+        a = sizeof(void *);
+    }
+}
+