[llvm-commits] [llvm] r115362 - /llvm/trunk/docs/SourceLevelDebugging.html

Devang Patel dpatel at apple.com
Fri Oct 1 15:45:00 PDT 2010


Author: dpatel
Date: Fri Oct  1 17:45:00 2010
New Revision: 115362

URL: http://llvm.org/viewvc/llvm-project?rev=115362&view=rev
Log:
Fix block descriptor documentation.

Modified:
    llvm/trunk/docs/SourceLevelDebugging.html

Modified: llvm/trunk/docs/SourceLevelDebugging.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/SourceLevelDebugging.html?rev=115362&r1=115361&r2=115362&view=diff
==============================================================================
--- llvm/trunk/docs/SourceLevelDebugging.html (original)
+++ llvm/trunk/docs/SourceLevelDebugging.html Fri Oct  1 17:45:00 2010
@@ -461,14 +461,16 @@
 <pre>
 !3 = metadata !{
   i32,     ;; Tag = 13 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a> (DW_TAG_lexical_block)
-  metadata ;; Reference to context descriptor
+  metadata,;; Reference to context descriptor
+  i32,     ;; Line number
+  i32      ;; Column number
 }
 </pre>
 </div>
 
 <p>These descriptors provide debug information about nested blocks within a
-   subprogram.  The array of member descriptors is used to define local
-   variables and deeper nested blocks.</p>
+   subprogram. The line number and column numbers are used to dinstinguish
+   two lexical blocks at same depth. </p>
 
 </div>
 





More information about the llvm-commits mailing list