Split out the Dwarf writer stuff into separate files. This is a much more
commitbbee8c925518db5831184ea13fa5abb7b4292561
authorBill Wendling <isanbard@gmail.com>
Fri, 15 May 2009 00:11:17 +0000 (15 00:11 +0000)
committerBill Wendling <isanbard@gmail.com>
Fri, 15 May 2009 00:11:17 +0000 (15 00:11 +0000)
tree14a131cd9d6a504192d16f8c7274f6353c197c2c
parentb56c996483900ea8ce0313b21f98ce1dbb762191
Split out the Dwarf writer stuff into separate files. This is a much more
logical/sane approach to organizing all of the stuff that goes into writing out
DWARF information. Honestly? even this is too complex for what it's supposed to
be doing.

Trivia: It *looks* like there would be functionality changes, however there aren't!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71821 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/AsmPrinter/DIE.cpp [new file with mode: 0644]
lib/CodeGen/AsmPrinter/DIE.h [new file with mode: 0644]
lib/CodeGen/AsmPrinter/DwarfLabel.cpp [new file with mode: 0644]
lib/CodeGen/AsmPrinter/DwarfLabel.h [new file with mode: 0644]
lib/CodeGen/AsmPrinter/DwarfPrinter.cpp [new file with mode: 0644]
lib/CodeGen/AsmPrinter/DwarfPrinter.h [new file with mode: 0644]
lib/CodeGen/AsmPrinter/DwarfWriter.cpp