diff options
author | David Robillard <d@drobilla.net> | 2012-10-15 20:08:52 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-10-15 20:08:52 +0000 |
commit | 60cb2bb1a12a1393abdc0d82b40ea0feabe3a74d (patch) | |
tree | 42ab3460523da85011a448f74c6f430888942df9 /src/c.cpp | |
parent | 7bdf853545a3d1bcaf7ae028a0409007862c3382 (diff) | |
download | resp-60cb2bb1a12a1393abdc0d82b40ea0feabe3a74d.tar.gz resp-60cb2bb1a12a1393abdc0d82b40ea0feabe3a74d.tar.bz2 resp-60cb2bb1a12a1393abdc0d82b40ea0feabe3a74d.zip |
Update for LLVM 3.1
git-svn-id: http://svn.drobilla.net/resp/trunk@433 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/c.cpp')
-rw-r--r-- | src/c.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -47,7 +47,7 @@ struct CEngine : public Engine { CVal compileCall(CEnv& cenv, CFunc f, const ATuple* funcT, const vector<CVal>& args); CVal compileCast(CEnv& cenv, CVal v, const AST* t); - CVal compileCons(CEnv& cenv, const ATuple* type, CVal rtti, const vector<CVal>& fields); + CVal compileCons(CEnv& cenv, const char* tname, const ATuple* type, CVal rtti, const vector<CVal>& 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<CVal>& fields) +CEngine::compileCons(CEnv& cenv, const char* tname, const ATuple* type, CVal rtti, const vector<CVal>& fields) { return NULL; } |