summaryrefslogtreecommitdiff
path: root/test/Analysis/LoadVN/RLE-Preserve.ll
blob: 88a0c7f2987fb120058d66fe5ea5d133cfa48fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
; This testcase ensures that redundant loads are preserved when they are not 
; allowed to be eliminated.
; RUN: llvm-as < %s | 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
}