mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
52e5896b3f
llvm-svn: 48538
10 lines
127 B
LLVM
10 lines
127 B
LLVM
; RUN: llvm-as < %s | opt -lowerswitch
|
|
|
|
define void @test() {
|
|
switch i32 0, label %Next [
|
|
]
|
|
Next: ; preds = %0
|
|
ret void
|
|
}
|
|
|