mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
c9f75b5700
ConstantExpr::getGetElementPtr method folds two getelementptr instructions when possible. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10758 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
533 B
Plaintext
12 lines
533 B
Plaintext
; RUN: llvm-as < %s | llvm-dis | not grep 'getelementptr.*getelementptr'
|
|
|
|
%struct.TUVVertex = type { short, short, short, short }
|
|
%struct.TTriangleItem = type { sbyte*, sbyte*, [3 x %struct.TUVVertex] }
|
|
|
|
%data_triangleItems = internal constant [2908 x %struct.TTriangleItem] zeroinitializer
|
|
|
|
void %foo() {
|
|
store short 0, short* getelementptr ([3 x %struct.TUVVertex]* getelementptr ([2908 x %struct.TTriangleItem]* %data_triangleItems, long 0, long 0, ubyte 2), long 0, long 0, ubyte 0)
|
|
ret void
|
|
}
|