diff options
author | Adrian Prantl <aprantl@apple.com> | 2014-06-30 17:17:35 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2014-06-30 17:17:35 +0000 |
commit | da7d92e3e2775e9486b328a726ac897d00126129 (patch) | |
tree | 68de4fe351ad6f9e6b20a8a304c04d7c49d05730 /llvm/docs/SourceLevelDebugging.rst | |
parent | 53b68300693c8596cf38d5563554e36d2f626f9c (diff) | |
download | bcm5719-llvm-da7d92e3e2775e9486b328a726ac897d00126129.tar.gz bcm5719-llvm-da7d92e3e2775e9486b328a726ac897d00126129.zip |
Debug info: split out complex DIVariable address expressions into a
separate MDNode so they can be uniqued via folding set magic. To conserve
space, DIVariable nodes are still variable-length, with the last two
fields being optional.
No functional change.
http://reviews.llvm.org/D3526
llvm-svn: 212050
Diffstat (limited to 'llvm/docs/SourceLevelDebugging.rst')
-rw-r--r-- | llvm/docs/SourceLevelDebugging.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/docs/SourceLevelDebugging.rst b/llvm/docs/SourceLevelDebugging.rst index a4fbd72167f..869d3a38310 100644 --- a/llvm/docs/SourceLevelDebugging.rst +++ b/llvm/docs/SourceLevelDebugging.rst @@ -570,6 +570,7 @@ Local variables metadata, ;; Reference to the type descriptor i32, ;; flags metadata ;; (optional) Reference to inline location + metadata ;; (optional) Reference to a complex expression (see below) } These descriptors are used to define variables local to a sub program. The |