Files
scully/inc/AST/Type.h
Markus Hauschild d5853c13b7 Types!
2013-06-01 16:41:18 +02:00

13 lines
213 B
C++

#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