From: Chris Lattner Date: Wed, 14 Jul 2004 23:14:07 +0000 (+0000) Subject: You cannot pass functions by value, what does that even mean?? X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6c142300c2ede16bf51669d157f37ee6bca18c43;p=oota-llvm.git You cannot pass functions by value, what does that even mean?? git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14833 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Feature/forwardreftest.ll b/test/Feature/forwardreftest.ll index 641aff5ad75..bd6ba086da4 100644 --- a/test/Feature/forwardreftest.ll +++ b/test/Feature/forwardreftest.ll @@ -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