Remove debug code emitter from the JIT

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17151 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2004-10-21 03:07:38 +00:00
parent 4f9a6c30a2
commit 9691a898c7

View File

@ -156,9 +156,7 @@ bool PPC32TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
return true;
// Machine code emitter pass for PowerPC
MachineCodeEmitter *M = &MCE;
DEBUG(M = MachineCodeEmitter::createDebugEmitter());
PM.add(new PPC32CodeEmitter(*this, *M));
PM.add(new PPC32CodeEmitter(*this, MCE));
// Delete machine code for this function after emitting it
PM.add(createMachineCodeDeleter());
return false;