summaryrefslogtreecommitdiffstats
path: root/llvm/test/Bitcode
diff options
context:
space:
mode:
authorStepan Dyatkovskiy <stpworld@narod.ru>2012-05-08 08:33:21 +0000
committerStepan Dyatkovskiy <stpworld@narod.ru>2012-05-08 08:33:21 +0000
commit5eafce5c88152dc4a281bd40b92d4525c9df1976 (patch)
tree1087db82e5572e5de05a3987489ab1620161e3bf /llvm/test/Bitcode
parent7daf8976785e6e7bc9ca11ac88f62e725dbd9dd8 (diff)
downloadbcm5719-llvm-5eafce5c88152dc4a281bd40b92d4525c9df1976.tar.gz
bcm5719-llvm-5eafce5c88152dc4a281bd40b92d4525c9df1976.zip
Rejected r156374: Ordinary PR1255 patch. Due to clang-x86_64-debian-fnt buildbot failure.
llvm-svn: 156377
Diffstat (limited to 'llvm/test/Bitcode')
-rw-r--r--llvm/test/Bitcode/2012-05-07-SwitchInstRangesSupport.ll33
1 files changed, 0 insertions, 33 deletions
diff --git a/llvm/test/Bitcode/2012-05-07-SwitchInstRangesSupport.ll b/llvm/test/Bitcode/2012-05-07-SwitchInstRangesSupport.ll
deleted file mode 100644
index 4f51ba83b9d..00000000000
--- a/llvm/test/Bitcode/2012-05-07-SwitchInstRangesSupport.ll
+++ /dev/null
@@ -1,33 +0,0 @@
-; RUN: rm -f %t.bc
-; RUN: rm -f %t.ll
-; RUN: rm -f %t2.bc
-; RUN: rm -f %t2.ll
-; RUN: llvm-as %s -o %t.bc
-; RUN: llvm-dis %t.bc -o - | tail -n +2 > %t.ll
-; RUN: llvm-as %t.ll -o %t2.bc
-; RUN: llvm-dis %t2.bc -o - | tail -n +2 > %t2.ll
-; RUN: diff %t.ll %t2.ll | not grep .*
-
-define void @test() {
- %mem = alloca i32
- store i32 2, i32* %mem
- %c = load i32* %mem
- switch i32 %c, label %exit [
- i32 1, label %exit
- i32 2, label %exit
- ]
-exit:
- ret void
-}
-define void @test_wide() {
- %mem = alloca i256
- store i256 2, i256* %mem
- %c = load i256* %mem
- switch i256 %c, label %exit [
- i256 123456789012345678901234567890, label %exit
- i256 2, label %exit
- ]
-exit:
- ret void
-}
-
OpenPOWER on IntegriCloud