mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5809 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
156bcf3f65
commit
bcecb4baf9
17
test/Transforms/Mem2Reg/2003-04-18-DeadBlockProblem.ll
Normal file
17
test/Transforms/Mem2Reg/2003-04-18-DeadBlockProblem.ll
Normal file
@ -0,0 +1,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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user