Init LLVM/JIT stuff

This commit is contained in:
Markus Hauschild
2013-06-01 14:29:18 +02:00
parent f0d0d6ec11
commit 9731b93a83
5 changed files with 57 additions and 9 deletions

View File

@@ -10,6 +10,7 @@
#include "AST/ASTElement.h"
#include "AST/AssignmentExpression.h"
#include "AST/BinOpExpression.h"
#include "AST/CodeGenVisitor.h"
#include "AST/ConstantExpression.h"
#include "AST/Expression.h"
#include "AST/ExpressionStatement.h"
@@ -29,11 +30,14 @@
#include "AST/ValueList.h"
#include "AST/VariableDefinition.h"
#include "llvm/Module.h"
}
%name scullyParser
%token_type {Token*}
%extra_argument{llvm::Module* mod}
// whitespace and comments
%type T_WHITESPACE {int}