Add testcases for vpku[hw]um(x,x)
[oota-llvm.git] / test / Other / 2002-08-02-DomSetProblem.ll
1 ; Dominator set calculation is not calculating dominators for unreachable 
2 ; blocks.  These blocks should at least dominate themselves.  This is 
3 ; fouling up the verify pass.
4 ;
5 ; RUN: analyze -domset %s | grep BB
6
7 void %test() {
8         ret void
9 BB:
10         ret void
11 }