llvm-6502/test/Other/2002-08-02-DomSetProblem.ll
2006-08-27 22:44:20 +00:00

12 lines
273 B
LLVM

; Dominator set calculation is not calculating dominators for unreachable
; blocks. These blocks should at least dominate themselves. This is
; fouling up the verify pass.
;
; RUN: llvm-as < %s | opt -analyze -domset | grep BB
void %test() {
ret void
BB:
ret void
}