1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/Regression/Other/2002-08-02-DomSetProblem.ll
Chris Lattner 3cb4867479 New testcase for dominator problem
llvm-svn: 3209
2002-08-02 16:41:21 +00:00

12 lines
256 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: analyze -domset %s | grep BB
void %test() {
ret void
BB:
ret void
}