Free machine code

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5146 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-12-25 05:06:21 +00:00
parent ff863ba610
commit 430cda7452

View File

@ -64,13 +64,11 @@ bool X86TargetMachine::addPassesToJITCompile(PassManager &PM) {
else
PM.add(createLocalRegisterAllocator(*this));
// Print the instruction selected machine code...
// PM.add(createMachineFunctionPrinterPass());
// Print the register-allocated code
if (PrintCode)
if (PrintCode) // Print the register-allocated code
PM.add(createX86CodePrinterPass(*this, std::cerr));
PM.add(createMachineCodeDestructionPass());
return false; // success!
}