Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[oota-llvm.git] / test / CodeGen / Generic / 2009-06-03-UnreachableSplitPad.ll
1 ; RUN: llc < %s
2 ; PR4317
3
4 declare i32 @b()
5
6 define void @a() {
7 entry:
8   ret void
9
10 dummy:
11   invoke i32 @b() to label %reg unwind label %reg
12
13 reg:
14   ret void
15 }