llvm-for-llvmta/test/Transforms/LowerSwitch/2003-08-23-EmptySwitch.ll
Nils Hölscher 3500bf8dde first commit
2022-04-25 10:02:23 +02:00

10 lines
117 B
LLVM

; RUN: opt < %s -lowerswitch
define void @test() {
switch i32 0, label %Next [
]
Next: ; preds = %0
ret void
}