You cannot pass functions by value, what does that even mean??

llvm-svn: 14833
This commit is contained in:
Chris Lattner 2004-07-14 23:14:07 +00:00
parent 1e780d3d26
commit 969d6fbcee
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
%myty = type int
%myfn = type float (int,double,uint,short)
type int(%myfn)
type int(%myfn*)
type int(int)
type int(int(int))
type int(int(int)*)
%thisfuncty = type int (int) *
implementation