Initial revision

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2001-06-06 20:29:01 +00:00
parent 8d0afd3d32
commit 009505452b
145 changed files with 19198 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
%myty = type int
%myfn = type float (int,double,uint,short)
type int(%myfn)
type int(int)
type int(int(int))
implementation
; This function always returns zero
int "zarro"(int %Func)
%q = uint 4000000000
%p = int 0
begin
Startup:
add int %p, 10
ret int %p
end
int "test"(int)
%thisfuncty = type int (int)
begin
add %thisfuncty %zarro, %test
add %thisfuncty %test, %foozball
ret int 0
end
int "foozball"(int)
begin
ret int 0
end