diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-05 04:11:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-05 04:11:11 +0000 |
commit | c310778830720f707382d03c2b022f3ddbf08ad1 (patch) | |
tree | 3b4a5bb400f443db0a3c6f46a8e3dc57b0d7b43c /docs/WritingAnLLVMBackend.html | |
parent | ea761868b5e4c0166721daf259f86c3816b44f42 (diff) |
don't reference DwarfWriter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100401 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMBackend.html')
-rw-r--r-- | docs/WritingAnLLVMBackend.html | 3 |
1 files changed, 1 insertions, 2 deletions
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 |