1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/Regression/Analysis/LoadVN/RLE-Eliminate.ll
Chris Lattner 015d27c877 new testcase
llvm-svn: 12832
2004-04-11 16:47:15 +00:00

24 lines
451 B
LLVM

; This testcase ensures that redundant loads are eliminated when they should
; be. All RL variables (redundant loads) should be eliminated.
;
; RUN: llvm-as < %s | opt -load-vn -gcse | llvm-dis | not grep %RL
;
int "test1"(int* %P) {
%A = load int* %P
%RL = load int* %P
%C = add int %A, %RL
ret int %C
}
int "test2"(int* %P) {
%A = load int* %P
br label %BB2
BB2:
br label %BB3
BB3:
%RL = load int* %P
%B = add int %A, %RL
ret int %B
}