diff options
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfException.h')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfException.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.h b/lib/CodeGen/AsmPrinter/DwarfException.h index 4bc4a458c0..85bf581990 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.h +++ b/lib/CodeGen/AsmPrinter/DwarfException.h @@ -166,14 +166,14 @@ public: //===--------------------------------------------------------------------===// // Main entry points. // - DwarfException(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T); + DwarfException(AsmPrinter *A); virtual ~DwarfException(); /// BeginModule - Emit all exception information that should come prior to the /// content. - void BeginModule(Module *m, MachineModuleInfo *mmi) { + void BeginModule(Module *m) { this->M = m; - this->MMI = mmi; + this->MMI = Asm->MMI; } /// EndModule - Emit all exception information that should come after the |