From 2ba4bd97d1aedf50c424c45ee327abddbf34dd12 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 10 Jan 2013 21:24:04 +0000 Subject: remove the rest of the "written by" lines in the documentation. It is against the developer policy to include this sort of thing as SVN blame already captures this in a far more fine-grained way. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172109 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/SourceLevelDebugging.rst | 2 -- 1 file changed, 2 deletions(-) (limited to 'docs/SourceLevelDebugging.rst') diff --git a/docs/SourceLevelDebugging.rst b/docs/SourceLevelDebugging.rst index 781824c..0faf0cf 100644 --- a/docs/SourceLevelDebugging.rst +++ b/docs/SourceLevelDebugging.rst @@ -2,8 +2,6 @@ Source Level Debugging with LLVM ================================ -.. sectionauthor:: Chris Lattner and Jim Laskey - .. contents:: :local: -- cgit v1.1 From 34760ee55f951385a3b4321d6686315b9e518304 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Wed, 13 Feb 2013 07:22:25 +0000 Subject: This is actually located at the end, not the middle. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175041 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/SourceLevelDebugging.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/SourceLevelDebugging.rst') diff --git a/docs/SourceLevelDebugging.rst b/docs/SourceLevelDebugging.rst index 0faf0cf..00c26cb 100644 --- a/docs/SourceLevelDebugging.rst +++ b/docs/SourceLevelDebugging.rst @@ -298,7 +298,6 @@ Subprogram descriptors 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, ;; Line number where the scope of the subprogram begins 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 @@ -309,6 +308,7 @@ Subprogram descriptors metadata, ;; Lists function template parameters metadata, ;; Function declaration descriptor metadata ;; List of function variables + i32, ;; Line number where the scope of the subprogram begins } These descriptors provide debug information about functions, methods and -- cgit v1.1 From 49136801681ae739c049cf0e95713df378710cfd Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Sat, 16 Feb 2013 20:07:40 +0000 Subject: Documentation: correct syntax (one missing comma, one extra comma) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175375 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/SourceLevelDebugging.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/SourceLevelDebugging.rst') diff --git a/docs/SourceLevelDebugging.rst b/docs/SourceLevelDebugging.rst index 00c26cb..78ce4e0 100644 --- a/docs/SourceLevelDebugging.rst +++ b/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 -- cgit v1.1