summaryrefslogtreecommitdiff
path: root/test/Analysis/LoadVN/RLE-Eliminate.ll
blob: 4c3a668bc9b9302343b8bace953efdcaf978ef54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
; This testcase ensures that redundant loads are eliminated when they should 
; be.  All RL variables (redundant loads) should be eliminated.
;
; RUN: llvm-upgrade < %s | llvm-as | 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
}