diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-04 07:48:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-04 07:48:20 +0000 |
commit | 1198002c8105c08a4e242396746775d288bf0a52 (patch) | |
tree | e51708ff1b7e06972ef968aaa9bd12ab62d6ea0a /llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | |
parent | ef8240bbacec2d27c0991c14de211011831c3e16 (diff) | |
download | bcm5719-llvm-1198002c8105c08a4e242396746775d288bf0a52.tar.gz bcm5719-llvm-1198002c8105c08a4e242396746775d288bf0a52.zip |
remove the raw_ostream from various dwarf printing things.
The only thing left is LEB printing, which uses EmitRawText
for now.
llvm-svn: 100325
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp index 8b616b01261..bf89cd6da18 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -37,9 +37,8 @@ #include "llvm/ADT/Twine.h" using namespace llvm; -DwarfException::DwarfException(raw_ostream &OS, AsmPrinter *A, - const MCAsmInfo *T) - : DwarfPrinter(OS, A, T), shouldEmitTable(false),shouldEmitMoves(false), +DwarfException::DwarfException(AsmPrinter *A) + : DwarfPrinter(A), shouldEmitTable(false), shouldEmitMoves(false), shouldEmitTableModule(false), shouldEmitMovesModule(false), ExceptionTimer(0) { if (TimePassesIsEnabled) |