mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
efd74a0159
to run the die pass after it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11942 91177308-0d34-0410-b5e6-96231b3b80d8
54 lines
1.3 KiB
LLVM
54 lines
1.3 KiB
LLVM
; The %A getelementptr instruction should be eliminated here
|
|
|
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep getelementptr | not grep '%A '
|
|
|
|
%Global = constant [10 x sbyte] c"helloworld"
|
|
|
|
implementation
|
|
|
|
int *%foo1(int* %I) { ; Test noop elimination
|
|
%A = getelementptr int* %I, long 0
|
|
ret int * %A
|
|
}
|
|
|
|
int* %foo2(int* %I) { ; Test noop elimination
|
|
%A = getelementptr int* %I
|
|
ret int* %A
|
|
}
|
|
int* %foo3(int * %I) { ; Test that two array indexing geps fold
|
|
%A = getelementptr int* %I, long 17
|
|
%B = getelementptr int* %A, long 4
|
|
ret int* %B
|
|
}
|
|
|
|
int* %foo4({int} *%I) { ; Test that two getelementptr insts fold
|
|
%A = getelementptr {int}* %I, long 1
|
|
%B = getelementptr {int}* %A, long 0, ubyte 0
|
|
ret int* %B
|
|
}
|
|
|
|
sbyte * %foo5() {
|
|
; This should be turned into a constexpr instead of being an instruction
|
|
%A = getelementptr [10 x sbyte]* %Global, long 0, long 4
|
|
ret sbyte* %A
|
|
}
|
|
|
|
int* %foo6() {
|
|
%M = malloc [4 x int]
|
|
%A = getelementptr [4 x int]* %M, long 0, long 0
|
|
%B = getelementptr int* %A, long 2
|
|
ret int* %B
|
|
}
|
|
|
|
int* %foo7(int* %I, long %C, long %D) {
|
|
%A = getelementptr int* %I, long %C
|
|
%B = getelementptr int* %A, long %D
|
|
ret int* %B
|
|
}
|
|
|
|
sbyte* %foo8([10 x int]* %X) {
|
|
%A = getelementptr [10 x int]* %X, long 0, long 0 ;; Fold into the cast.
|
|
%B = cast int* %A to sbyte*
|
|
ret sbyte * %B
|
|
}
|