commit | 75e113cb5a14f3e749d1c84b3f5c91706e1c47e8 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Apr 04 07:48:20 2010 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Apr 04 07:48:20 2010 +0000 |
tree | f6d81d8592617ea4356bfb080a065578c612b12d | |
parent | 1bf2b2853b43edaa360771c2934b39391784b754 [diff] [blame] |
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
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 3252a42..dea96bd 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -137,7 +137,7 @@ DW = getAnalysisIfAvailable<DwarfWriter>(); if (DW) - DW->BeginModule(&M, MMI, O, this, MAI); + DW->BeginModule(&M, this); return false; }