Add testcases for vpku[hw]um(x,x)
[oota-llvm.git] / test / Other / 2002-01-31-PostDomSet.ll
1 ; Crash in post dominator set construction.
2 ;
3 ; RUN: analyze -postdomset %s
4 ;
5
6 implementation
7
8 int "looptest"()
9 begin
10         br label %L2Top
11
12 L2Top:
13         br bool true, label %L2End, label %L2Top
14
15 L2Body:
16         br label %L2Top
17
18 L2End:
19         ret int 0
20 end
21