tree-optimization/99793 - testcase for the PR
authorRichard Biener <rguenther@suse.de>
Tue, 28 Sep 2021 10:48:50 +0000 (12:48 +0200)
committerRichard Biener <rguenther@suse.de>
Tue, 28 Sep 2021 10:50:29 +0000 (12:50 +0200)
This adds a testcase for the PR which was fixed with the fix for
PR100112.

2021-09-28  Richard Biener  <rguenther@suse.de>

PR tree-optimization/99793
* gcc.dg/tree-ssa/pr99793.c: New testcase.

gcc/testsuite/gcc.dg/tree-ssa/pr99793.c [new file with mode: 0644]

diff --git a/gcc/testsuite/gcc.dg/tree-ssa/pr99793.c b/gcc/testsuite/gcc.dg/tree-ssa/pr99793.c
new file mode 100644 (file)
index 0000000..9127449
--- /dev/null
@@ -0,0 +1,14 @@
+/* { dg-do compile } */
+/* { dg-options "-O -fstrict-aliasing -fdump-tree-optimized" } */
+
+extern void foo(void);
+static int a, *b = &a, c, *d = &c;
+int main()
+{
+  int **e = &d;
+  if (!((unsigned)((*e = d) == 0) - (*b = 1)))
+    foo();
+  return 0;
+}
+
+/* { dg-final { scan-tree-dump-not "foo" "optimized" } } */