]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
[Committed] Fix tree-optimization/103152: Still one more -signed1bit issue
authorAndrew Pinski <apinski@marvell.com>
Tue, 9 Nov 2021 09:56:10 +0000 (09:56 +0000)
committerAndrew Pinski <apinski@marvell.com>
Tue, 9 Nov 2021 19:01:57 +0000 (19:01 +0000)
When I fixed PR 102622, I accidently left behind a TYPE_PRECISION
check which I had there for checking before hand.  This check
is not needed as the code will handle it correctly anyways.

Committed as obvious after a bootstrap/test on x86_64-linux-gnu.

PR tree-optimization/10352

gcc/ChangeLog:

* match.pd: Remove check of TYPE_PRECISION for
the a?0:pow2 case.

gcc/testsuite/ChangeLog:

* gcc.c-torture/execute/pr10352-1.c: New test.

gcc/match.pd
gcc/testsuite/gcc.c-torture/execute/pr10352-1.c [new file with mode: 0644]

index cdab5e59f4e22316805989cf579c69a4444e9c9d..986b052bc939f60b6a3afffefec0cd8125b770f4 100644 (file)
@@ -4056,8 +4056,7 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
      (if (integer_onep (@2))
       (convert (bit_xor (convert:boolean_type_node @0) { booltrue; } )))
      /* a ? powerof2cst : 0 -> (!a) << (log2(powerof2cst)) */
-     (if (INTEGRAL_TYPE_P (type) &&  integer_pow2p (@2)
-         && TYPE_PRECISION (type) != 1)
+     (if (INTEGRAL_TYPE_P (type) &&  integer_pow2p (@2))
       (with {
        tree shift = build_int_cst (integer_type_node, tree_log2 (@2));
        }
diff --git a/gcc/testsuite/gcc.c-torture/execute/pr10352-1.c b/gcc/testsuite/gcc.c-torture/execute/pr10352-1.c
new file mode 100644 (file)
index 0000000..babb9d4
--- /dev/null
@@ -0,0 +1,12 @@
+/* this is another case where phiopt
+   would create -signed1bit which is undefined. */
+struct {
+  int a:1;
+} b;
+int *c = (int *)&b, d;
+int main() {
+  d = c && (b.a = (d < 0) ^ 3);
+  if (d != 1)
+    __builtin_abort();
+  return 0;
+}