[tests] Cleanup initialization of test suffixes.
[oota-llvm.git] / test / Transforms / LowerSwitch / 2003-08-23-EmptySwitch.ll
index 8b67c23e6cf715456037b2d971830c4934f35fdd..61e1dcd345bdca810b86ff79a90300aeed3e4b3e 100644 (file)
@@ -1,7 +1,9 @@
-; RUN: as < %s | opt -lowerswitch
+; RUN: opt < %s -lowerswitch
 
-void %test() {
-       switch uint 0, label %Next []
-Next:
+define void @test() {
+       switch i32 0, label %Next [
+       ]
+Next:          ; preds = %0
        ret void
 }
+