mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 16:31:16 +00:00
18 lines
286 B
LLVM
18 lines
286 B
LLVM
|
; This testcases makes sure that mem2reg can handle unreachable blocks.
|
||
|
; RUN: as < %s | opt -mem2reg
|
||
|
|
||
|
int %test() {
|
||
|
%X = alloca int
|
||
|
|
||
|
store int 6, int* %X
|
||
|
br label %Loop
|
||
|
Loop:
|
||
|
store int 5, int* %X
|
||
|
br label %EndOfLoop
|
||
|
Unreachable:
|
||
|
br label %EndOfLoop
|
||
|
|
||
|
EndOfLoop:
|
||
|
br label %Loop
|
||
|
}
|