Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / Transforms / Inline / 2003-09-22-PHINodeInlineFail.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | opt -inline -disable-output
2 implementation
3
4 int %main() {
5 entry:
6         invoke void %__main( )
7                         to label %LongJmpBlkPre except label %LongJmpBlkPre
8
9 LongJmpBlkPre:
10         %i.3 = phi uint [ 0, %entry ], [ 0, %entry]
11         ret int 0
12 }
13
14 void %__main() {
15         ret void
16 }
17