diff options
Diffstat (limited to 'llvm.cpp')
-rw-r--r-- | llvm.cpp | 14 |
1 files changed, 1 insertions, 13 deletions
@@ -45,11 +45,6 @@ struct CEngine { IRBuilder<> builder; }; - -/*************************************************************************** - * Typing * - ***************************************************************************/ - const Type* lltype(AType* t) { @@ -72,13 +67,6 @@ lltype(AType* t) return NULL; // not reached } - -/*************************************************************************** - * Code Generation * - ***************************************************************************/ - -// Compile-Time Environment - CEngine::CEngine() : module(new Module("tuplr")) , engine(ExecutionEngine::create(module)) @@ -185,7 +173,7 @@ compileFunction(CEnv& cenv, const std::string& name, const Type* retT, const AST /*************************************************************************** - * AST Code Generation * + * Code Generation * ***************************************************************************/ void |