1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 23:42:52 +01:00
llvm-mirror/test/Regression/Transforms/InstCombine/getelementptr_const.ll

14 lines
435 B
LLVM
Raw Normal View History

2004-03-25 23:59:06 +01:00
; Test folding of constantexpr geps into normal geps.
; RUN: llvm-as < %s | opt -instcombine -gcse -instcombine | 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
}