blob: 8a3dc1e80518ae8229815f70fd1f3c69bfc3710e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
; 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
}
|