Merge branch 'master' of git.tuxzone.org:woc2013

This commit is contained in:
2013-06-01 17:01:00 +02:00
3 changed files with 53 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