1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Add tests of redundant load elimination

llvm-svn: 2636
This commit is contained in:
Chris Lattner 2002-05-16 01:03:12 +00:00
parent 92c56ccbfa
commit 7a5a9d057e
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,26 @@
; This testcase ensures that redundant loads are eliminated when they should
; be. All RL variables (redundant loads) should be eliminated.
;
; RUN: if as < %s | opt -gcse | dis | grep %RL
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
;
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
}

View File

@ -0,0 +1,27 @@
; This testcase ensures that redundant loads are preserved when they are not
; allowed to be eliminated.
; RUN: as < %s | dis > Output/%s.before
; RUN: as < %s | opt -gcse | dis > Output/%s.after
; RUN: diff Output/%s.before Output/%s.after
;
int "test1"(int* %P) {
%A = load int* %P
store int 1, int * %P
%B = load int* %P
%C = add 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 = add int %A, %B
ret int %C
}