aboutsummaryrefslogtreecommitdiffstats
path: root/src/llvm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/llvm.cpp')
-rw-r--r--src/llvm.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/llvm.cpp b/src/llvm.cpp
index fcac73c..a3882c8 100644
--- a/src/llvm.cpp
+++ b/src/llvm.cpp
@@ -73,8 +73,6 @@ struct LLVMEngine : public Engine {
CVal compileString(CEnv& cenv, const char* str);
CType compileType(CEnv& cenv, const char* name, const AST* exp);
- CType objectType(CEnv& cenv);
-
void writeModule(CEnv& cenv, std::ostream& os);
const string call(CEnv& cenv, CFunc f, const AST* retT);
@@ -289,12 +287,6 @@ LLVMEngine::compileType(CEnv& cenv, const char* name, const AST* expr)
return type;
}
-CType
-LLVMEngine::objectType(CEnv& cenv)
-{
- return objectT;
-}
-
CFunc
LLVMEngine::startFn(
CEnv& cenv, const std::string& name, const ATuple* args, const ATuple* type)