mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
7f5ef2d7a5
llvm-svn: 32115
22 lines
526 B
LLVM
22 lines
526 B
LLVM
; 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-upgrade < %s | llvm-as | 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
|
|
}
|