aboutsummaryrefslogtreecommitdiffstats
path: root/src/llvm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/llvm.cpp')
-rw-r--r--src/llvm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/llvm.cpp b/src/llvm.cpp
index 81d2fe8..be57e25 100644
--- a/src/llvm.cpp
+++ b/src/llvm.cpp
@@ -59,8 +59,8 @@ struct LLVMEngine : public Engine {
CVal compileCall(CEnv& cenv, CFunc f, const AType* funcT, const vector<CVal>& args);
CVal compileCons(CEnv& cenv, const AType* type, CVal rtti, const vector<CVal>& fields);
CVal compileDot(CEnv& cenv, CVal tup, int32_t index);
- CVal compileGlobal(CEnv& cenv, const AType* type, const string& sym, CVal val);
- CVal compileGlobalGet(CEnv& cenv, const string& sym, CVal val);
+ CVal compileGlobalSet(CEnv& cenv, const string& s, CVal v, const AType* t);
+ CVal compileGlobalGet(CEnv& cenv, const string& s, CVal v);
IfState compileIfStart(CEnv& cenv);
void compileIfBranch(CEnv& cenv, IfState state, CVal condV, const AST* then);
CVal compileIfEnd(CEnv& cenv, IfState state, CVal elseV, const AType* type);
@@ -439,7 +439,7 @@ LLVMEngine::compilePrimitive(CEnv& cenv, const ATuple* prim)
}
CVal
-LLVMEngine::compileGlobal(CEnv& cenv, const AType* type, const string& sym, CVal val)
+LLVMEngine::compileGlobalSet(CEnv& cenv, const string& sym, CVal val, const AType* type)
{
LLVMEngine* engine = reinterpret_cast<LLVMEngine*>(cenv.engine());
GlobalVariable* global = new GlobalVariable(*module, llType(type), false,