Inferno  0.2
type_db.hpp
Go to the documentation of this file.
00001 
00002 #ifndef TYPE_DB_HPP
00003 #define TYPE_DB_HPP
00004 
00005 #include "llvm/ADT/APFloat.h"
00006 
00007 struct TypeDb
00008 {
00009     static const int char_bits;
00010     static const bool int_default_signed;
00011     static const bool char_default_signed;
00012     static const unsigned integral_bits[];
00013     static const llvm::fltSemantics * const float_semantics;
00014     static const llvm::fltSemantics * const double_semantics;    
00015     static const llvm::fltSemantics * const long_double_semantics;    
00016 };
00017 
00018 #endif
00019