Fix PR4948 (and a leak): by not destroying the DwarfException

object, the timer it creates was not being deleted.  Since the
timer belonged to a static timer group, the timer group would
be destroyed on shutdown, and would notice and complain that
not all timers it contained were destroyed.

llvm-svn: 81533
This commit is contained in:
Duncan Sands 2009-09-11 17:24:29 +00:00
parent 992e42b606
commit 4bd8040d14
1 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,8 @@ void DwarfWriter::BeginModule(Module *M,
void DwarfWriter::EndModule() {
DE->EndModule();
DD->EndModule();
delete DD; DD = 0;
delete DE; DE = 0;
}
/// BeginFunction - Gather pre-function debug information. Assumes being