mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
4572ce85b0
llvm-svn: 33296
12 lines
288 B
LLVM
12 lines
288 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-upgrade < %s | llvm-as | opt -analyze -domset | grep BB
|
|
|
|
void %test() {
|
|
ret void
|
|
BB:
|
|
ret void
|
|
}
|