diff options
author | Devang Patel <dpatel@apple.com> | 2011-04-22 23:10:17 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-04-22 23:10:17 +0000 |
commit | 1d6bbd41aad452ae5dac37ed25959da2903ddf52 (patch) | |
tree | ded3694fe162ad0349ad4935a7fb29d4b1657e42 /llvm/docs/SourceLevelDebugging.html | |
parent | 2ee5b37ab6c533fae4292a478488797c3fe0a5c8 (diff) | |
download | bcm5719-llvm-1d6bbd41aad452ae5dac37ed25959da2903ddf52.tar.gz bcm5719-llvm-1d6bbd41aad452ae5dac37ed25959da2903ddf52.zip |
Let front-end tie subprogram declaration with subprogram definition directly.
llvm-svn: 130028
Diffstat (limited to 'llvm/docs/SourceLevelDebugging.html')
-rw-r--r-- | llvm/docs/SourceLevelDebugging.html | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/llvm/docs/SourceLevelDebugging.html b/llvm/docs/SourceLevelDebugging.html index 9e6b579e8e6..e4566179ea2 100644 --- a/llvm/docs/SourceLevelDebugging.html +++ b/llvm/docs/SourceLevelDebugging.html @@ -433,15 +433,16 @@ global variables are collected by named metadata <tt>!llvm.dbg.gv</tt>.</p> i32, ;; Line number where defined metadata, ;; Reference to type descriptor i1, ;; True if the global is local to compile unit (static) - i1 ;; True if the global is defined in the compile unit (not extern) - i32 ;; Virtuality, e.g. dwarf::DW_VIRTUALITY__virtual - i32 ;; Index into a virtual function + i1, ;; True if the global is defined in the compile unit (not extern) + i32, ;; Virtuality, e.g. dwarf::DW_VIRTUALITY__virtual + i32, ;; Index into a virtual function metadata, ;; indicates which base type contains the vtable pointer for the ;; derived class - i1 ;; isArtificial - i1 ;; isOptimized - Function *;; Pointer to LLVM function - metadata ;; Lists function template parameters + i1, ;; isArtificial + i1, ;; isOptimized + Function *,;; Pointer to LLVM function + metadata, ;; Lists function template parameters + metadata ;; Function declaration descriptor } </pre> </div> |