mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-07 03:40:35 +00: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
|
|
}
|