diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-10-04 15:49:50 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-10-04 15:49:50 +0000 |
commit | 37c5231051c03ef91c4873edaad102b4d2042433 (patch) | |
tree | 0db77697cf9c482f1a28d193842e32b5cdba1447 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | 985e1b933d4978d2324a24682c68564145a03ed8 (diff) | |
download | bcm5719-llvm-37c5231051c03ef91c4873edaad102b4d2042433.tar.gz bcm5719-llvm-37c5231051c03ef91c4873edaad102b4d2042433.zip |
Move DwarfCompileUnit from DwarfUnit.h to its own header (DwarfCompileUnit.h)
In preparation for sinking all the subprogram emission code down from
DwarfDebug into DwarfCompileUnit, this will avoid bloating
DwarfUnit.h/cpp greatly and make concerns a bit more clear/isolated.
(sinking this handling down is part of the work to handle emitting
minimal subprograms for -gmlt-like data into the skeleton CU under
fission)
llvm-svn: 219057
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index c54fc989569..a19750a4904 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -11,8 +11,10 @@ // //===----------------------------------------------------------------------===// -#include "ByteStreamer.h" #include "DwarfDebug.h" + +#include "ByteStreamer.h" +#include "DwarfCompileUnit.h" #include "DIE.h" #include "DIEHash.h" #include "DwarfUnit.h" |