/* The scully programming language. * * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. * Licensed under the GNU GPL v2. */ #ifndef TYPE_H #define TYPE_H #include "llvm/Type.h" #include enum class Type { BOOL, INT, STRING, VOID }; std::string typeToString(Type type); llvm::Type* typeToLLVMType(Type type); #endif // TYPE_H