]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix PR 103317, ICE after PHI-OPT, minmax_replacement producing invalid SSA
authorAndrew Pinski <apinski@marvell.com>
Thu, 18 Nov 2021 23:38:30 +0000 (23:38 +0000)
committerAndrew Pinski <apinski@marvell.com>
Fri, 19 Nov 2021 07:18:23 +0000 (07:18 +0000)
The problem is r12-5300-gf98f373dd822b35c allows phiopt to recognize more basic blocks
but missed one location where the basic block does not need to be empty but still
needs to have a single predecessor. This patch fixes that over sight.

OK? Bootstrapped and tested on x86_64-linux-gnu with no regressions.

PR tree-optimization/103317

gcc/ChangeLog:

* tree-ssa-phiopt.c (minmax_replacement): For the non empty
middle bb case, check to make sure it has a single predecessor.

gcc/testsuite/ChangeLog:

* gcc.c-torture/compile/pr103317-1.c: New test.

gcc/testsuite/gcc.c-torture/compile/pr103317-1.c [new file with mode: 0644]
gcc/tree-ssa-phiopt.c

diff --git a/gcc/testsuite/gcc.c-torture/compile/pr103317-1.c b/gcc/testsuite/gcc.c-torture/compile/pr103317-1.c
new file mode 100644 (file)
index 0000000..f9d145e
--- /dev/null
@@ -0,0 +1,13 @@
+int a, b;
+char c;
+void
+d (void)
+{
+  char e = c;
+  if (b)
+    if (c < 16 - 11)
+      e = 16 - 11;
+  if (e > 8)
+    e = 8;
+  a = e;
+}
index f043168408950f966dd3839ceefde3a5f704d52f..1abc4ea21cca6f34bbdc3b60f86127b2414971a1 100644 (file)
@@ -1780,6 +1780,9 @@ minmax_replacement (basic_block cond_bb, basic_block middle_bb,
       gimple *assign = last_and_only_stmt (middle_bb);
       tree lhs, op0, op1, bound;
 
+      if (!single_pred_p (middle_bb))
+       return false;
+
       if (!assign
          || gimple_code (assign) != GIMPLE_ASSIGN)
        return false;