This commit is contained in:
Markus Hauschild
2013-06-01 16:41:18 +02:00
parent 6d2e40778c
commit d5853c13b7
3 changed files with 22 additions and 1 deletions

View File

@@ -1,10 +1,12 @@
#ifndef TYPE_H
#define TYPE_H
#include "llvm/Type.h"
#include <string>
enum class Type { BOOL, INT, STRING, VOID };
std::string typeToString(Type type);
llvm::Type* typeToLLVMType(Type type);
#endif // TYPE_H