[llvm] r371648 - Update documentation.
Adrian Prantl via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 11 12:49:38 PDT 2019
Author: adrian
Date: Wed Sep 11 12:49:38 2019
New Revision: 371648
URL: http://llvm.org/viewvc/llvm-project?rev=371648&view=rev
Log:
Update documentation.
Modified:
llvm/trunk/docs/SourceLevelDebugging.rst
Modified: llvm/trunk/docs/SourceLevelDebugging.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/SourceLevelDebugging.rst?rev=371648&r1=371647&r2=371648&view=diff
==============================================================================
--- llvm/trunk/docs/SourceLevelDebugging.rst (original)
+++ llvm/trunk/docs/SourceLevelDebugging.rst Wed Sep 11 12:49:38 2019
@@ -849,16 +849,16 @@ non-dwarf targets to translate it as nee
This section describes the forms used to represent C and C++ programs. Other
languages could pattern themselves after this (which itself is tuned to
-representing programs in the same way that DWARF 3 does), or they could choose
+representing programs in the same way that DWARF does), or they could choose
to provide completely different forms if they don't fit into the DWARF model.
As support for debugging information gets added to the various LLVM
source-language front-ends, the information used should be documented here.
-The following sections provide examples of a few C/C++ constructs and the debug
-information that would best describe those constructs. The canonical
-references are the ``DIDescriptor`` classes defined in
-``include/llvm/IR/DebugInfo.h`` and the implementations of the helper functions
-in ``lib/IR/DIBuilder.cpp``.
+The following sections provide examples of a few C/C++ constructs and
+the debug information that would best describe those constructs. The
+canonical references are the ``DINode`` classes defined in
+``include/llvm/IR/DebugInfoMetadata.h`` and the implementations of the
+helper functions in ``lib/IR/DIBuilder.cpp``.
C/C++ source file information
-----------------------------
More information about the llvm-commits
mailing list