Fix a leak!

Andy, in a previous commit you made this into an ImmutablePass so that you could
add it to the PassManager, then in the next commit you left it a Pass but
removed the code that added it to the PM. If you do add it to the PM then the PM
should take care of deleting it, but it's also true that nothing in codegen
needs this object to exist after it's done its work here. It's not clear to me
which design you want; this should likely either cease to be a Pass or be added
to the PM where other parts of CodeGen will request it.

llvm-svn: 149765
This commit is contained in:
Nick Lewycky 2012-02-04 05:26:17 +00:00
parent 275a671b2a
commit 6024f9b5be
1 changed files with 2 additions and 0 deletions

View File

@ -145,6 +145,8 @@ static MCContext *addPassesToGenerateCode(LLVMTargetMachine *TM,
PassConfig->addMachinePasses();
delete PassConfig;
return Context;
}