changed uint to unsigned int, thanks Elrood

This commit is contained in:
Christian Kamm 2008-10-13 21:08:11 +02:00
parent 881a141a1a
commit e76d8f25b4

View file

@ -149,7 +149,7 @@ static LLGlobalVariable* dwarfCompileUnit(Module* m)
//////////////////////////////////////////////////////////////////////////////////////////////////
static LLGlobalVariable* dwarfSubProgram(llvm::GlobalVariable* emitUnit, llvm::GlobalVariable* defineUnit, const char* prettyname, const char* mangledname, uint linenum, bool isprivate)
static LLGlobalVariable* dwarfSubProgram(llvm::GlobalVariable* emitUnit, llvm::GlobalVariable* defineUnit, const char* prettyname, const char* mangledname, unsigned int linenum, bool isprivate)
{
std::vector<LLConstant*> vals(11);
vals[0] = DBG_TAG(DW_TAG_subprogram);