summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/rdr-6098585-default-fallthrough-to-caserange.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/rdr-6098585-default-fallthrough-to-caserange.c')
-rw-r--r--test/CodeGen/rdr-6098585-default-fallthrough-to-caserange.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/CodeGen/rdr-6098585-default-fallthrough-to-caserange.c b/test/CodeGen/rdr-6098585-default-fallthrough-to-caserange.c
new file mode 100644
index 0000000..f1d15dc
--- /dev/null
+++ b/test/CodeGen/rdr-6098585-default-fallthrough-to-caserange.c
@@ -0,0 +1,20 @@
+// RUN: clang-cc -triple i386-unknown-unknown --emit-llvm-bc -o - %s | opt -std-compile-opts | llvm-dis > %t &&
+// RUN: grep "ret i32 10" %t
+
+// Ensure that this doesn't compile to infinite loop in g() due to
+// miscompilation of fallthrough from default to a (tested) case
+// range.
+
+static int f0(unsigned x) {
+ switch(x) {
+ default:
+ x += 1;
+ case 10 ... 0xFFFFFFFF:
+ return 0;
+ }
+}
+
+int g() {
+ f0(1);
+ return 10;
+}
OpenPOWER on IntegriCloud