You cannot pass functions by value, what does that even mean??
authorChris Lattner <sabre@nondot.org>
Wed, 14 Jul 2004 23:14:07 +0000 (23:14 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 14 Jul 2004 23:14:07 +0000 (23:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14833 91177308-0d34-0410-b5e6-96231b3b80d8

test/Feature/forwardreftest.ll

index 641aff5ad756258f7f037e1046b6d38d4764faa6..bd6ba086da4125135bf37f0de40b86f9f53f435d 100644 (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