summaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/DwarfException.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-04-04 07:48:20 +0000
committerChris Lattner <sabre@nondot.org>2010-04-04 07:48:20 +0000
commit75f50725c1d7f86ee545337b155b4feac66627f6 (patch)
treef6d81d8592617ea4356bfb080a065578c612b12d /lib/CodeGen/AsmPrinter/DwarfException.cpp
parent7d73c7f0d618dd6661cd55834c58aa62f22b28fe (diff)
downloadllvm-75f50725c1d7f86ee545337b155b4feac66627f6.tar.gz
llvm-75f50725c1d7f86ee545337b155b4feac66627f6.tar.bz2
llvm-75f50725c1d7f86ee545337b155b4feac66627f6.tar.xz
remove the raw_ostream from various dwarf printing things.
The only thing left is LEB printing, which uses EmitRawText for now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfException.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp
index 8b616b0126..bf89cd6da1 100644
--- a/lib/CodeGen/AsmPrinter/DwarfException.cpp
+++ b/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)