1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 22:12:57 +02:00
llvm-mirror/test/Transforms/InstCombine/getelementptr_const.ll
Reid Spencer c49d7dd886 For PR1319:
Upgrade tests to work with new llvm.exp version of llvm_runtest.

llvm-svn: 36013
2007-04-14 20:13:02 +00:00

15 lines
462 B
LLVM

; 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
}