diff options
Diffstat (limited to 'test/CodeGen/Generic/switch-lower-feature.ll')
-rw-r--r-- | test/CodeGen/Generic/switch-lower-feature.ll | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/CodeGen/Generic/switch-lower-feature.ll b/test/CodeGen/Generic/switch-lower-feature.ll new file mode 100644 index 0000000000000..05234012547c1 --- /dev/null +++ b/test/CodeGen/Generic/switch-lower-feature.ll @@ -0,0 +1,29 @@ +; RUN: llvm-as < %s | llc -march=x86 -o - | grep {\$7} | count 1 +; RUN: llvm-as < %s | llc -march=x86 -o - | grep {\$6} | count 1 +; RUN: llvm-as < %s | llc -march=x86 -o - | grep 1024 | count 1 +; RUN: llvm-as < %s | llc -march=x86 -o - | grep jb | count 2 +; RUN: llvm-as < %s | llc -march=x86 -o - | grep je | count 1 + +define i32 @main(i32 %tmp158) { +entry: + switch i32 %tmp158, label %bb336 [ + i32 120, label %bb338 + i32 121, label %bb338 + i32 122, label %bb338 + i32 123, label %bb338 + i32 124, label %bb338 + i32 125, label %bb338 + i32 126, label %bb338 + i32 1024, label %bb338 + i32 0, label %bb338 + i32 1, label %bb338 + i32 2, label %bb338 + i32 3, label %bb338 + i32 4, label %bb338 + i32 5, label %bb338 + ] +bb336: + ret i32 10 +bb338: + ret i32 11 +} |