aboutsummaryrefslogtreecommitdiffstats
path: root/src/c.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c.cpp')
-rw-r--r--src/c.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/c.cpp b/src/c.cpp
index 2373846..4e71eae 100644
--- a/src/c.cpp
+++ b/src/c.cpp
@@ -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;
}