From 60cb2bb1a12a1393abdc0d82b40ea0feabe3a74d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 15 Oct 2012 20:08:52 +0000 Subject: Update for LLVM 3.1 git-svn-id: http://svn.drobilla.net/resp/trunk@433 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- src/c.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/c.cpp') diff --git a/src/c.cpp b/src/c.cpp index f172b65..0f56b5a 100644 --- a/src/c.cpp +++ b/src/c.cpp @@ -47,7 +47,7 @@ struct CEngine : public Engine { CVal compileCall(CEnv& cenv, CFunc f, const ATuple* funcT, const vector& args); CVal compileCast(CEnv& cenv, CVal v, const AST* t); - CVal compileCons(CEnv& cenv, const ATuple* type, CVal rtti, const vector& fields); + CVal compileCons(CEnv& cenv, const char* tname, const ATuple* type, CVal rtti, const vector& fields); CVal compileDot(CEnv& cenv, CVal tup, int32_t index); CVal compileGlobalSet(CEnv& cenv, const string& s, CVal v, const AST* t); CVal compileGlobalGet(CEnv& cenv, const string& s, CVal v); @@ -145,7 +145,7 @@ CEngine::compileCast(CEnv& cenv, CVal v, const AST* t) } CVal -CEngine::compileCons(CEnv& cenv, const ATuple* type, CVal rtti, const vector& fields) +CEngine::compileCons(CEnv& cenv, const char* tname, const ATuple* type, CVal rtti, const vector& fields) { return NULL; } -- cgit v1.2.1