aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/getelementptr_const.ll
blob: e4265f41973b552b3fa76712c784a4cf879d26db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; Test folding of constantexpr geps into normal geps.
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine -gcse -instcombine | \
; RUN:    llvm-dis | not grep getelementptr

%Array = external global [40 x int]

int %test(long %X) {
	%A = getelementptr int* getelementptr ([40 x int]* %Array, long 0, long 0), long %X
	%B = getelementptr [40 x int]* %Array, long 0, long %X
	%a = cast int* %A to int
	%b = cast int* %B to int
	%c = sub int %a, %b
	ret int %c
}