From: David Blaikie Date: Fri, 23 Jan 2015 22:48:27 +0000 (+0000) Subject: DebugInfo: Remove outdated comment. Column info is no longer needed to differentiate... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c654b9ff9280d3f649993cba889644ef9aa18ff8;p=clang DebugInfo: Remove outdated comment. Column info is no longer needed to differentiate inline callsites. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@226955 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGExpr.cpp b/lib/CodeGen/CGExpr.cpp index 5c38bc0171..3354d3da41 100644 --- a/lib/CodeGen/CGExpr.cpp +++ b/lib/CodeGen/CGExpr.cpp @@ -3059,12 +3059,6 @@ RValue CodeGenFunction::EmitRValueForField(LValue LV, RValue CodeGenFunction::EmitCallExpr(const CallExpr *E, ReturnValueSlot ReturnValue) { - // Force column info to be generated so we can differentiate - // multiple call sites on the same line in the debug info. - // FIXME: This is insufficient. Two calls coming from the same macro - // expansion will still get the same line/column and break debug info. It's - // possible that LLVM can be fixed to not rely on this uniqueness, at which - // point this workaround can be removed. ApplyDebugLocation DL(*this, E->getLocStart()); // Builtins never have block type.