diff options
Diffstat (limited to 'src/c.cpp')
-rw-r--r-- | src/c.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -162,7 +162,7 @@ struct CEngine : public Engine { CVal compileIf(CEnv& cenv, const ATuple* aif); CVal compileMatch(CEnv& cenv, const ATuple* match); CVal compileGlobal(CEnv& cenv, const AType* type, const string& sym, CVal val); - CVal getGlobal(CEnv& cenv, const string& sym, CVal val); + CVal compileGlobalGet(CEnv& cenv, const string& sym, CVal val); void writeModule(CEnv& cenv, std::ostream& os) { os << out; @@ -304,7 +304,7 @@ CEngine::compileGlobal(CEnv& cenv, const AType* type, const string& sym, CVal va } CVal -CEngine::getGlobal(CEnv& cenv, const string& sym, CVal val) +CEngine::compileGlobalGet(CEnv& cenv, const string& sym, CVal val) { return NULL; } |