aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation
diff options
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-11-26 22:26:47 +0100
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-11-26 22:26:47 +0100
commitf50c482ebabe3572cdd8a97d8b51ca94e44aba3a (patch)
treea5c64e5ef06e55ebb6c2d848c0cd1e89f6e014d0 /validation
parent1abdabb5651d65a8f816bdc22487a11393514061 (diff)
parentfe9dbeb3d0ab6b12448e0eed96df1b8499d91c3c (diff)
downloadsparse-dev-f50c482ebabe3572cdd8a97d8b51ca94e44aba3a.tar.gz
Merge branch 'fix-trivial-phi' into next
* fix trivial_phi() when the target is before the single value
Diffstat (limited to 'validation')
-rw-r--r--validation/optim/trivial-phi01.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/validation/optim/trivial-phi01.c b/validation/optim/trivial-phi01.c
new file mode 100644
index 00000000..40bd343b
--- /dev/null
+++ b/validation/optim/trivial-phi01.c
@@ -0,0 +1,20 @@
+void foo(int a)
+{
+ if (a) {
+ while (a) {
+ switch (0) {
+ default:
+ a = 0;
+ case 0:;
+ }
+ }
+ }
+}
+
+/*
+ * check-name: trivial-phi01
+ * check-command: test-linearize -Wno-decl $file
+ *
+ * check-output-ignore
+ * check-output-excludes: phi\\.
+ */