mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8882 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
24011be956
commit
5b15deedc0
21
test/Transforms/Mem2Reg/2003-10-05-DeadPHIInsertion.ll
Normal file
21
test/Transforms/Mem2Reg/2003-10-05-DeadPHIInsertion.ll
Normal file
@ -0,0 +1,21 @@
|
||||
; Mem2reg should not insert dead PHI nodes! The naive algorithm inserts a PHI
|
||||
; node in L3, even though there is no load of %A in anything dominated by L3.
|
||||
|
||||
; RUN: llvm-as < %s | opt -mem2reg | llvm-dis | not grep phi
|
||||
|
||||
void %test(int %B, bool %C) {
|
||||
%A = alloca int
|
||||
store int %B, int* %A
|
||||
br bool %C, label %L1, label %L2
|
||||
L1:
|
||||
store int %B, int* %A
|
||||
%D = load int* %A
|
||||
call void %test(int %D, bool false)
|
||||
br label %L3
|
||||
L2:
|
||||
%E = load int* %A
|
||||
call void %test(int %E, bool true)
|
||||
br label %L3
|
||||
L3:
|
||||
ret void
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user