From: Devang Patel Date: Wed, 8 Apr 2009 19:47:04 +0000 (+0000) Subject: Use presumed location to get line number info. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0f78feaecf91143b498e22cbbf860fd0e40d9671;p=clang Use presumed location to get line number info. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68630 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index 45ceb2b8e6..0d13299574 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -609,7 +609,7 @@ void CGDebugInfo::EmitFunctionStart(const char *Name, QualType ReturnType, // FIXME: Why is this using CurLoc??? llvm::DICompileUnit Unit = getOrCreateCompileUnit(CurLoc); SourceManager &SM = M->getContext().getSourceManager(); - unsigned LineNo = SM.getInstantiationLineNumber(CurLoc); + unsigned LineNo = SM.getPresumedLoc(CurLoc).getLine(); llvm::DISubprogram SP = DebugFactory.CreateSubprogram(Unit, Name, Name, "", Unit, LineNo, @@ -639,8 +639,8 @@ void CGDebugInfo::EmitStopPoint(llvm::Function *Fn, CGBuilderTy &Builder) { // Get the appropriate compile unit. llvm::DICompileUnit Unit = getOrCreateCompileUnit(CurLoc); - DebugFactory.InsertStopPoint(Unit, SM.getInstantiationLineNumber(CurLoc), - SM.getInstantiationColumnNumber(CurLoc), + PresumedLoc PLoc = SM.getPresumedLoc(CurLoc); + DebugFactory.InsertStopPoint(Unit, PLoc.getLine(), PLoc.getColumn(), Builder.GetInsertBlock()); }