mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-05 02:16:46 +00:00
47dd0c343c
Fix getelementptr instruction to use long isntead of uint index git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4047 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
393 B
LLVM
20 lines
393 B
LLVM
|
|
%MyVar = uninitialized global int
|
|
%MyIntList = uninitialized global { \2 *, int }
|
|
external global int ; int*:0
|
|
|
|
%AConst = constant int 123
|
|
|
|
%AString = constant [4 x ubyte] c"test"
|
|
|
|
implementation
|
|
|
|
int "foo"(int %blah)
|
|
begin
|
|
store int 5, int *%MyVar
|
|
%idx = getelementptr { \2 *, int } * %MyIntList, long 0, ubyte 1
|
|
store int 12, int* %idx
|
|
ret int %blah
|
|
end
|
|
|