[llvm] r340246 - [docs] Fix a small typo in a debug info example

Alex Langford via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 20 18:43:03 PDT 2018


Author: xiaobai
Date: Mon Aug 20 18:43:03 2018
New Revision: 340246

URL: http://llvm.org/viewvc/llvm-project?rev=340246&view=rev
Log:
[docs] Fix a small typo in a debug info example

Modified:
    llvm/trunk/docs/SourceLevelDebugging.rst

Modified: llvm/trunk/docs/SourceLevelDebugging.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/SourceLevelDebugging.rst?rev=340246&r1=340245&r2=340246&view=diff
==============================================================================
--- llvm/trunk/docs/SourceLevelDebugging.rst (original)
+++ llvm/trunk/docs/SourceLevelDebugging.rst Mon Aug 20 18:43:03 2018
@@ -384,7 +384,7 @@ scope information for the variable ``Z``
   !19 = !DILocation(line: 5, column: 11, scope: !18)
 
 Here ``!19`` indicates that ``Z`` is declared at line number 5 and column
-number 0 inside of lexical scope ``!18``.  The lexical scope itself resides
+number 11 inside of lexical scope ``!18``.  The lexical scope itself resides
 inside of subprogram ``!4`` described above.
 
 The scope information attached with each instruction provides a straightforward




More information about the llvm-commits mailing list