summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2007-04-27-BitTestsBadMask.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/2007-04-27-BitTestsBadMask.ll')
-rw-r--r--test/CodeGen/X86/2007-04-27-BitTestsBadMask.ll18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2007-04-27-BitTestsBadMask.ll b/test/CodeGen/X86/2007-04-27-BitTestsBadMask.ll
new file mode 100644
index 0000000000..f89159987c
--- /dev/null
+++ b/test/CodeGen/X86/2007-04-27-BitTestsBadMask.ll
@@ -0,0 +1,18 @@
+; RUN: llvm-as < %s | llc -march=x86 | grep -c je | grep 3
+; RUN: llvm-as < %s | llc -march=x86-64 | grep 4297064449
+; PR 1325+
+
+define i32 @foo(i8 %bar) {
+entry:
+ switch i8 %bar, label %bb1203 [
+ i8 117, label %bb1204
+ i8 85, label %bb1204
+ i8 106, label %bb1204
+ ]
+
+bb1203: ; preds = %entry
+ ret i32 1
+
+bb1204: ; preds = %entry, %entry, %entry
+ ret i32 2
+}