mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 07:22:55 +01:00
3cb4867479
llvm-svn: 3209
12 lines
256 B
LLVM
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
|
|
}
|