New testcase that crashes the -lowerswitch pass
[oota-llvm.git] / test / Transforms / LowerSwitch / 2003-08-23-EmptySwitch.ll
1 ; RUN: llvm-as < %s | opt -lowerswitch
2
3 void %test() {
4         switch uint 0, label %Next []
5 Next:
6         ret void
7 }