aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/BasicAA/2003-04-22-GEPProblem.ll
blob: 27ec9ea694444dc41dddc8d0d2d529733c6f27ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: as < %s | opt -load-vn -gcse -instcombine | dis | grep sub

; BasicAA was incorrectly concluding that P1 and P2 didn't conflict!

int %test(int *%Ptr, long %V) {
	%P2 = getelementptr int* %Ptr, long 1
	%P1 = getelementptr int* %Ptr, long %V
	%X = load int* %P1
	store int 5, int* %P2

	%Y = load int* %P1

	%Z = sub int %X, %Y
	ret int %Z
}