summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-07-14 23:14:07 +0000
committerChris Lattner <sabre@nondot.org>2004-07-14 23:14:07 +0000
commit6c142300c2ede16bf51669d157f37ee6bca18c43 (patch)
tree1d2449fedcb492c50f6536f797f7988c33b32941 /test
parente9670e3623aade4fbb5596b39257438bca55d117 (diff)
downloadllvm-6c142300c2ede16bf51669d157f37ee6bca18c43.tar.gz
llvm-6c142300c2ede16bf51669d157f37ee6bca18c43.tar.bz2
llvm-6c142300c2ede16bf51669d157f37ee6bca18c43.tar.xz
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
Diffstat (limited to 'test')
-rw-r--r--test/Feature/forwardreftest.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Feature/forwardreftest.ll b/test/Feature/forwardreftest.ll
index 641aff5ad7..bd6ba086da 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