Revert patches to add case-range support for PR1255.
The work on this project was left in an unfinished and inconsistent state.
Hopefully someone will eventually get a chance to implement this feature, but
in the meantime, it is better to put things back the way the were. I have
left support in the bitcode reader to handle the case-range bitcode format,
so that we do not lose bitcode compatibility with the llvm 3.3 release.
This reverts the following commits: 155464, 156374, 156377, 156613, 156704,
156757, 156804 156808, 156985, 157046, 157112, 157183, 157315, 157384, 157575,
157576, 157586, 157612, 157810, 157814, 157815, 157880, 157881, 157882, 157884,
157887, 157901, 158979, 157987, 157989, 158986, 158997, 159076, 159101, 159100,
159200, 159201, 159207, 159527, 159532, 159540, 159583, 159618, 159658, 159659,
159660, 159661, 159703, 159704, 160076, 167356, 172025, 186736
llvm-svn: 190328
2013-09-09 21:14:35 +02:00
|
|
|
; RUN: llvm-dis < %s.bc| FileCheck %s
|
2014-08-19 23:08:27 +02:00
|
|
|
; RUN: verify-uselistorder < %s.bc
|
Revert patches to add case-range support for PR1255.
The work on this project was left in an unfinished and inconsistent state.
Hopefully someone will eventually get a chance to implement this feature, but
in the meantime, it is better to put things back the way the were. I have
left support in the bitcode reader to handle the case-range bitcode format,
so that we do not lose bitcode compatibility with the llvm 3.3 release.
This reverts the following commits: 155464, 156374, 156377, 156613, 156704,
156757, 156804 156808, 156985, 157046, 157112, 157183, 157315, 157384, 157575,
157576, 157586, 157612, 157810, 157814, 157815, 157880, 157881, 157882, 157884,
157887, 157901, 158979, 157987, 157989, 158986, 158997, 159076, 159101, 159100,
159200, 159201, 159207, 159527, 159532, 159540, 159583, 159618, 159658, 159659,
159660, 159661, 159703, 159704, 160076, 167356, 172025, 186736
llvm-svn: 190328
2013-09-09 21:14:35 +02:00
|
|
|
|
|
|
|
; case-ranges.ll.bc was generated by passing this file to llvm-as from the 3.3
|
|
|
|
; release of LLVM. This tests that the bitcode for switches from that release
|
|
|
|
; can still be read.
|
|
|
|
|
|
|
|
define i32 @foo(i32 %x) nounwind ssp uwtable {
|
|
|
|
; CHECK: define i32 @foo
|
|
|
|
%1 = alloca i32, align 4
|
|
|
|
%2 = alloca i32, align 4
|
|
|
|
store i32 %x, i32* %2, align 4
|
2015-02-27 22:17:42 +01:00
|
|
|
%3 = load i32, i32* %2, align 4
|
Revert patches to add case-range support for PR1255.
The work on this project was left in an unfinished and inconsistent state.
Hopefully someone will eventually get a chance to implement this feature, but
in the meantime, it is better to put things back the way the were. I have
left support in the bitcode reader to handle the case-range bitcode format,
so that we do not lose bitcode compatibility with the llvm 3.3 release.
This reverts the following commits: 155464, 156374, 156377, 156613, 156704,
156757, 156804 156808, 156985, 157046, 157112, 157183, 157315, 157384, 157575,
157576, 157586, 157612, 157810, 157814, 157815, 157880, 157881, 157882, 157884,
157887, 157901, 158979, 157987, 157989, 158986, 158997, 159076, 159101, 159100,
159200, 159201, 159207, 159527, 159532, 159540, 159583, 159618, 159658, 159659,
159660, 159661, 159703, 159704, 160076, 167356, 172025, 186736
llvm-svn: 190328
2013-09-09 21:14:35 +02:00
|
|
|
switch i32 %3, label %9 [
|
|
|
|
; CHECK: switch i32 %3, label %9
|
|
|
|
i32 -3, label %4
|
|
|
|
; CHECK-NEXT: i32 -3, label %4
|
|
|
|
i32 -2, label %4
|
|
|
|
; CHECK-NEXT: i32 -2, label %4
|
|
|
|
i32 -1, label %4
|
|
|
|
; CHECK-NEXT: i32 -1, label %4
|
|
|
|
i32 0, label %4
|
|
|
|
; CHECK-NEXT: i32 0, label %4
|
|
|
|
i32 1, label %4
|
|
|
|
; CHECK-NEXT: i32 1, label %4
|
|
|
|
i32 2, label %4
|
|
|
|
; CHECK-NEXT: i32 2, label %4
|
|
|
|
i32 4, label %5
|
|
|
|
; CHECK-NEXT: i32 4, label %5
|
|
|
|
i32 5, label %6
|
|
|
|
; CHECK-NEXT: i32 5, label %6
|
|
|
|
i32 6, label %7
|
|
|
|
; CHECK-NEXT: i32 6, label %7
|
|
|
|
i32 7, label %8
|
|
|
|
; CHECK-NEXT: i32 7, label %8
|
|
|
|
]
|
|
|
|
|
|
|
|
; <label>:4
|
|
|
|
store i32 -1, i32* %1
|
|
|
|
br label %11
|
|
|
|
|
|
|
|
; <label>:5
|
|
|
|
store i32 2, i32* %1
|
|
|
|
br label %11
|
|
|
|
|
|
|
|
; <label>:6
|
|
|
|
store i32 1, i32* %1
|
|
|
|
br label %11
|
|
|
|
|
|
|
|
; <label>:7
|
|
|
|
store i32 4, i32* %1
|
|
|
|
br label %11
|
|
|
|
|
|
|
|
; <label>:8
|
|
|
|
store i32 3, i32* %1
|
|
|
|
br label %11
|
|
|
|
|
|
|
|
; <label>:9
|
|
|
|
br label %10
|
|
|
|
|
|
|
|
; <label>:10
|
|
|
|
store i32 0, i32* %1
|
|
|
|
br label %11
|
|
|
|
|
|
|
|
; <label>:11
|
2015-02-27 22:17:42 +01:00
|
|
|
%12 = load i32, i32* %1
|
Revert patches to add case-range support for PR1255.
The work on this project was left in an unfinished and inconsistent state.
Hopefully someone will eventually get a chance to implement this feature, but
in the meantime, it is better to put things back the way the were. I have
left support in the bitcode reader to handle the case-range bitcode format,
so that we do not lose bitcode compatibility with the llvm 3.3 release.
This reverts the following commits: 155464, 156374, 156377, 156613, 156704,
156757, 156804 156808, 156985, 157046, 157112, 157183, 157315, 157384, 157575,
157576, 157586, 157612, 157810, 157814, 157815, 157880, 157881, 157882, 157884,
157887, 157901, 158979, 157987, 157989, 158986, 158997, 159076, 159101, 159100,
159200, 159201, 159207, 159527, 159532, 159540, 159583, 159618, 159658, 159659,
159660, 159661, 159703, 159704, 160076, 167356, 172025, 186736
llvm-svn: 190328
2013-09-09 21:14:35 +02:00
|
|
|
ret i32 %12
|
|
|
|
}
|