diff options
author | David Robillard <d@drobilla.net> | 2009-03-07 03:42:45 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-03-07 03:42:45 +0000 |
commit | 0ef506f38e4a18d11e50fb96c7d6d6c3323a76e0 (patch) | |
tree | ef764b914696b48d18a68bc0e0737d4b40cff94e /llvm.cpp | |
parent | 59e358c5edd79d7dcafcef95a978fb36959d1da6 (diff) | |
download | resp-0ef506f38e4a18d11e50fb96c7d6d6c3323a76e0.tar.gz resp-0ef506f38e4a18d11e50fb96c7d6d6c3323a76e0.tar.bz2 resp-0ef506f38e4a18d11e50fb96c7d6d6c3323a76e0.zip |
Tidy.
git-svn-id: http://svn.drobilla.net/resp/tuplr@72 ad02d1e2-f140-0410-9f75-f8b11f17cedd
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 |