]> gcc.gnu.org Git - gcc.git/commitdiff
Don't add dependencies in update_stmt.
authorAndrew MacLeod <amacleod@redhat.com>
Fri, 11 Nov 2022 17:22:33 +0000 (12:22 -0500)
committerAndrew MacLeod <amacleod@redhat.com>
Fri, 11 Nov 2022 19:47:39 +0000 (14:47 -0500)
gimple_ranger::update_stmt has no idea what the context of an update
is, and should not be adding relations when it re-evaluates a stmt.

PR tree-optimization/107523
gcc/
* gimple-range.cc (gimple_ranger::update_stmt): Use fur_stmt
rather than fur_depend.

gcc/testsuite/
* gcc.dg/pr107523.c: New.

gcc/gimple-range.cc
gcc/testsuite/gcc.dg/pr107523.c [new file with mode: 0644]

index 2885d0fa21ef52e1576b52e3877e7137cd584ca3..ecd6039e0fd5149539be4b2b37fa2d69270c510b 100644 (file)
@@ -546,7 +546,7 @@ gimple_ranger::update_stmt (gimple *s)
       // Re-calculate a new value using just cache values.
       Value_Range tmp (TREE_TYPE (lhs));
       fold_using_range f;
-      fur_depend src (s, &(gori ()), &m_cache);
+      fur_stmt src (s, &m_cache);
       f.fold_stmt (tmp, s, src, lhs);
 
       // Combine the new value with the old value to check for a change.
diff --git a/gcc/testsuite/gcc.dg/pr107523.c b/gcc/testsuite/gcc.dg/pr107523.c
new file mode 100644 (file)
index 0000000..1e5ed46
--- /dev/null
@@ -0,0 +1,32 @@
+/* { dg-do run } */
+/* { dg-options "-O2 " } */
+
+int a, b = 1;
+unsigned int c = 1;
+int main() {
+  int d = 1, f;
+  if (b)
+    d = 0;
+  a = -1;
+  b = ~d ^ 465984011;
+ L1:;
+  if (b < 2)
+    f = b;
+  b = f;
+  if (f <= a) {
+    int g = -(a && 1), h = g - f && a, i = ~(c / f) && 1 % (a | h);
+    if (c) {
+      g = f;
+      if (i || (g && (g > -465984012)))
+        goto L2;
+    }
+    c = g | f / c;
+  }
+  if (0)
+  L2:
+    a = 0;
+  if (a <= c)
+    goto L1;
+  return 0;
+}
+
This page took 0.078927 seconds and 5 git commands to generate.