1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

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 a4870e6ca2
commit 626552badd

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