Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[oota-llvm.git] / test / Assembler / 2003-05-15-SwitchBug.ll
1 ; RUN: llvm-as %s -o /dev/null
2
3 ; Check minimal switch statement
4
5 define void @test(i32 %X) {
6         switch i32 %X, label %dest [
7         ]
8
9 dest:           ; preds = %0
10         ret void
11 }