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/AsmPrinter.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/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 3252a42cc93..dea96bd479f 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -137,7 +137,7 @@ bool AsmPrinter::doInitialization(Module &M) { DW = getAnalysisIfAvailable<DwarfWriter>(); if (DW) - DW->BeginModule(&M, MMI, O, this, MAI); + DW->BeginModule(&M, this); return false; } |