diff options
-rw-r--r-- | docs/SourceLevelDebugging.html | 2 | ||||
-rw-r--r-- | docs/WritingAnLLVMBackend.html | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/docs/SourceLevelDebugging.html b/docs/SourceLevelDebugging.html index ed2211f2cf..e4c8460610 100644 --- a/docs/SourceLevelDebugging.html +++ b/docs/SourceLevelDebugging.html @@ -144,7 +144,7 @@ height="369"> 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> diff --git a/docs/WritingAnLLVMBackend.html b/docs/WritingAnLLVMBackend.html index 43766b5101..f49875c204 100644 --- a/docs/WritingAnLLVMBackend.html +++ b/docs/WritingAnLLVMBackend.html @@ -561,8 +561,7 @@ def AL : Register<"AL">, DwarfRegNum<[0, 0, 0]>; <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 |