comparison gen/tollvm.h @ 610:1b62222581fb

Change bool type to i8
author Christian Kamm <kamm incasoftware de>
date Sat, 20 Sep 2008 10:13:15 +0200
parents fbb1a366cfbc
children 83ca663ecc20
comparison
equal deleted inserted replaced
609:2cf4359d344f 610:1b62222581fb
56 llvm::ConstantFP* DtoConstFP(Type* t, long double value); 56 llvm::ConstantFP* DtoConstFP(Type* t, long double value);
57 57
58 LLConstant* DtoConstString(const char*); 58 LLConstant* DtoConstString(const char*);
59 LLConstant* DtoConstStringPtr(const char* str, const char* section = 0); 59 LLConstant* DtoConstStringPtr(const char* str, const char* section = 0);
60 LLConstant* DtoConstBool(bool); 60 LLConstant* DtoConstBool(bool);
61 LLConstant* DtoConstI1(bool);
61 62
62 // llvm wrappers 63 // llvm wrappers
63 LLValue* DtoLoad(LLValue* src, const char* name=0); 64 LLValue* DtoLoad(LLValue* src, const char* name=0);
64 void DtoStore(LLValue* src, LLValue* dst); 65 void DtoStore(LLValue* src, LLValue* dst);
65 LLValue* DtoBitCast(LLValue* v, const LLType* t, const char* name=0); 66 LLValue* DtoBitCast(LLValue* v, const LLType* t, const char* name=0);