From e76d8f25b4642c495d77312fea14fe7008ebd0d2 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Mon, 13 Oct 2008 21:08:11 +0200 Subject: [PATCH] changed uint to unsigned int, thanks Elrood --- gen/todebug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen/todebug.cpp b/gen/todebug.cpp index 2a95792e..3b0050da 100644 --- a/gen/todebug.cpp +++ b/gen/todebug.cpp @@ -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 vals(11); vals[0] = DBG_TAG(DW_TAG_subprogram);