summaryrefslogtreecommitdiff
path: root/docs/SourceLevelDebugging.rst
diff options
context:
space:
mode:
authorManman Ren <manman.ren@gmail.com>2013-08-29 17:07:49 +0000
committerManman Ren <manman.ren@gmail.com>2013-08-29 17:07:49 +0000
commit33f4c796ac2c373ed18e882431ba3661d24c2cfa (patch)
tree574f2d8e09c2e06c4310962639c4902a36b83c65 /docs/SourceLevelDebugging.rst
parent2f02ded68a114410f11bc2f4e901d0d8e5850de1 (diff)
downloadllvm-33f4c796ac2c373ed18e882431ba3661d24c2cfa.tar.gz
llvm-33f4c796ac2c373ed18e882431ba3661d24c2cfa.tar.bz2
llvm-33f4c796ac2c373ed18e882431ba3661d24c2cfa.tar.xz
Add unique identifier field to Composite Types and Format.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189593 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/SourceLevelDebugging.rst')
-rw-r--r--docs/SourceLevelDebugging.rst11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/SourceLevelDebugging.rst b/docs/SourceLevelDebugging.rst
index ad038717cb..e62e89d867 100644
--- a/docs/SourceLevelDebugging.rst
+++ b/docs/SourceLevelDebugging.rst
@@ -346,7 +346,7 @@ Basic type descriptors
!4 = metadata !{
i32, ;; Tag = 36 (DW_TAG_base_type)
- metadata,;; Source directory (including trailing slash) & file pair (may be null)
+ metadata, ;; Source directory (including trailing slash) & file pair (may be null)
metadata, ;; Reference to context
metadata, ;; Name (may be "" for anonymous types)
i32, ;; Line number where defined (may be 0)
@@ -389,7 +389,7 @@ Derived type descriptors
!5 = metadata !{
i32, ;; Tag (see below)
- metadata,;; Source directory (including trailing slash) & file pair (may be null)
+ metadata, ;; Source directory (including trailing slash) & file pair (may be null)
metadata, ;; Reference to context
metadata, ;; Name (may be "" for anonymous types)
i32, ;; Line number where defined (may be 0)
@@ -452,7 +452,7 @@ Composite type descriptors
!6 = metadata !{
i32, ;; Tag (see below)
- metadata,;; Source directory (including trailing slash) & file pair (may be null)
+ metadata, ;; Source directory (including trailing slash) & file pair (may be null)
metadata, ;; Reference to context
metadata, ;; Name (may be "" for anonymous types)
i32, ;; Line number where defined (may be 0)
@@ -462,9 +462,10 @@ Composite type descriptors
i32, ;; Flags
metadata, ;; Reference to type derived from
metadata, ;; Reference to array of member descriptors
- i32 ;; Runtime languages
+ i32, ;; Runtime languages
metadata, ;; Base type containing the vtable pointer for this type
- metadata ;; Template parameters
+ metadata, ;; Template parameters
+ metadata ;; A unique identifier for type uniquing purpose (may be null)
}
These descriptors are used to define types that are composed of 0 or more