Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / Other / 2002-01-31-PostDomSet-2.ll
1 ; Crash in post dominator set construction.
2 ;
3 ; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -postdomset
4 ;
5
6 implementation
7
8 int "postdomsettest"()
9 begin
10         br label %L2Top
11
12 L2Top:
13         br bool true, label %L2End, label %L2Body
14
15 L2Body:
16         br label %L2Top
17
18 L2End:
19         ret int 0
20 end
21