[llvm-commits] [llvm] r100401 - in /llvm/trunk/docs: SourceLevelDebugging.html WritingAnLLVMBackend.html
Chris Lattner
sabre at nondot.org
Sun Apr 4 21:11:11 PDT 2010
Author: lattner
Date: Sun Apr 4 23:11:11 2010
New Revision: 100401
URL: http://llvm.org/viewvc/llvm-project?rev=100401&view=rev
Log:
don't reference DwarfWriter
Modified:
llvm/trunk/docs/SourceLevelDebugging.html
llvm/trunk/docs/WritingAnLLVMBackend.html
Modified: llvm/trunk/docs/SourceLevelDebugging.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/SourceLevelDebugging.html?rev=100401&r1=100400&r2=100401&view=diff
==============================================================================
--- llvm/trunk/docs/SourceLevelDebugging.html (original)
+++ llvm/trunk/docs/SourceLevelDebugging.html Sun Apr 4 23:11:11 2010
@@ -144,7 +144,7 @@
an LLVM user a relationship between generated code and the original program
source code.</p>
-<p>Currently, debug information is consumed by the DwarfWriter to produce dwarf
+<p>Currently, debug information is consumed by DwarfDebug to produce dwarf
information used by the gdb debugger. Other targets could use the same
information to produce stabs or other debug forms.</p>
Modified: llvm/trunk/docs/WritingAnLLVMBackend.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/WritingAnLLVMBackend.html?rev=100401&r1=100400&r2=100401&view=diff
==============================================================================
--- llvm/trunk/docs/WritingAnLLVMBackend.html (original)
+++ llvm/trunk/docs/WritingAnLLVMBackend.html Sun Apr 4 23:11:11 2010
@@ -561,8 +561,7 @@
<p>
This defines the register <tt>AL</tt> and assigns it values (with
<tt>DwarfRegNum</tt>) that are used by <tt>gcc</tt>, <tt>gdb</tt>, or a debug
-information writer (such as <tt>DwarfWriter</tt>
-in <tt>llvm/lib/CodeGen/AsmPrinter</tt>) to identify a register. For register
+information writer to identify a register. For register
<tt>AL</tt>, <tt>DwarfRegNum</tt> takes an array of 3 values representing 3
different modes: the first element is for X86-64, the second for exception
handling (EH) on X86-32, and the third is generic. -1 is a special Dwarf number
More information about the llvm-commits
mailing list