TDL [codegen]: added basic structure

This commit is contained in:
Philippe Tillet
2018-12-17 10:43:49 -05:00
parent 50573052f7
commit 9dfa6993fb
6 changed files with 59 additions and 26 deletions

View File

@@ -0,0 +1,14 @@
#include "codegen.h"
#include "ast.h"
namespace tdl{
namespace ast{
void translation_unit::codegen(module *mod)
{ decls_->codegen(mod); }
}
}