mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
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
|
||
|
}
|