mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
4572ce85b0
llvm-svn: 33296
26 lines
463 B
LLVM
26 lines
463 B
LLVM
; This testcase ensures that redundant loads are preserved when they are not
|
|
; allowed to be eliminated.
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -load-vn -gcse | llvm-dis | grep sub
|
|
;
|
|
int %test1(int* %P) {
|
|
%A = load int* %P
|
|
store int 1, int* %P
|
|
%B = load int* %P
|
|
%C = sub int %A, %B
|
|
ret int %C
|
|
}
|
|
|
|
int %test2(int* %P) {
|
|
%A = load int* %P
|
|
br label %BB2
|
|
BB2:
|
|
store int 5, int* %P
|
|
br label %BB3
|
|
BB3:
|
|
%B = load int* %P
|
|
%C = sub int %A, %B
|
|
ret int %C
|
|
}
|
|
|
|
|