mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 23:48:49 +00:00
2b544beda3
Upgrade tests to work with new llvm.exp version of llvm_runtest. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36013 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
462 B
LLVM
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
|
|
}
|