diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-02-16 20:07:40 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-02-16 20:07:40 +0000 |
commit | 2b7dd6b1479da2078765486c30d4521216de28bd (patch) | |
tree | 6578d11753897e689730331ab7316df938cfb324 /llvm/docs | |
parent | 97499ed60eea4b43fd5eeaefadf20ddf85dbc9c2 (diff) | |
download | bcm5719-llvm-2b7dd6b1479da2078765486c30d4521216de28bd.tar.gz bcm5719-llvm-2b7dd6b1479da2078765486c30d4521216de28bd.zip |
Documentation: correct syntax (one missing comma, one extra comma)
llvm-svn: 175375
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/SourceLevelDebugging.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/SourceLevelDebugging.rst b/llvm/docs/SourceLevelDebugging.rst index 00c26cb42b0..78ce4e0e532 100644 --- a/llvm/docs/SourceLevelDebugging.rst +++ b/llvm/docs/SourceLevelDebugging.rst @@ -307,8 +307,8 @@ Subprogram descriptors Function * , ;; Pointer to LLVM function metadata, ;; Lists function template parameters metadata, ;; Function declaration descriptor - metadata ;; List of function variables - i32, ;; Line number where the scope of the subprogram begins + metadata, ;; List of function variables + i32 ;; Line number where the scope of the subprogram begins } These descriptors provide debug information about functions, methods and |