comparison gen/tollvm.h @ 1450:83bdf7bed9c5

Fix a type mismatch in ModuleInfo generation.
author Frits van Bommel <fvbommel wxs.nl>
date Mon, 01 Jun 2009 23:17:47 +0200
parents 63f4afd01036
children b3ba2c6ff038
comparison
equal deleted inserted replaced
1449:301a916eceef 1450:83bdf7bed9c5
46 LLValue* DtoGEP1(LLValue* ptr, LLValue* i0, const char* var=NULL, llvm::BasicBlock* bb=NULL); 46 LLValue* DtoGEP1(LLValue* ptr, LLValue* i0, const char* var=NULL, llvm::BasicBlock* bb=NULL);
47 LLValue* DtoGEP(LLValue* ptr, LLValue* i0, LLValue* i1, const char* var=NULL, llvm::BasicBlock* bb=NULL); 47 LLValue* DtoGEP(LLValue* ptr, LLValue* i0, LLValue* i1, const char* var=NULL, llvm::BasicBlock* bb=NULL);
48 48
49 LLValue* DtoGEPi1(LLValue* ptr, unsigned i0, const char* var=NULL, llvm::BasicBlock* bb=NULL); 49 LLValue* DtoGEPi1(LLValue* ptr, unsigned i0, const char* var=NULL, llvm::BasicBlock* bb=NULL);
50 LLValue* DtoGEPi(LLValue* ptr, unsigned i0, unsigned i1, const char* var=NULL, llvm::BasicBlock* bb=NULL); 50 LLValue* DtoGEPi(LLValue* ptr, unsigned i0, unsigned i1, const char* var=NULL, llvm::BasicBlock* bb=NULL);
51 LLConstant* DtoGEPi(LLConstant* ptr, unsigned i0, unsigned i1);
51 52
52 // to constant helpers 53 // to constant helpers
53 LLConstantInt* DtoConstSize_t(uint64_t); 54 LLConstantInt* DtoConstSize_t(uint64_t);
54 LLConstantInt* DtoConstUint(unsigned i); 55 LLConstantInt* DtoConstUint(unsigned i);
55 LLConstantInt* DtoConstInt(int i); 56 LLConstantInt* DtoConstInt(int i);