mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
230e5efe63
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@816 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
504 B
LLVM
25 lines
504 B
LLVM
|
|
%MyVar = global int 4
|
|
%MyIntList = uninitialized global { \2 *, int }
|
|
|
|
%AConst = constant int 123
|
|
|
|
%MyIntListPtr = constant { {\2,int}* } { {\2,int}* %MyIntList }
|
|
%MyVarPtr = global { int * } { int * %MyVar }
|
|
|
|
constant int 412
|
|
|
|
implementation
|
|
|
|
int "foo"(int %blah)
|
|
begin
|
|
store int %blah, int *%MyVar
|
|
store int 12, { \2 *, int } * %MyIntList, ubyte 1
|
|
|
|
%ack = load int * %0 ;; Load from the unnamed constant
|
|
%fzo = add int %ack, %blah
|
|
ret int %fzo
|
|
end
|
|
|
|
declare void "unimp"(float, double)
|