mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Remove debug output that's not really useful.
llvm-svn: 58778
This commit is contained in:
parent
aeaf83cfb8
commit
575f3150cf
@ -954,22 +954,9 @@ bool JITEmitter::finishFunction(MachineFunction &F) {
|
||||
MemMgr->setMemoryExecutable();
|
||||
|
||||
#ifndef NDEBUG
|
||||
{
|
||||
DOUT << std::hex;
|
||||
int i;
|
||||
unsigned char* q = FnStart;
|
||||
for (i=1; q!=FnEnd; q++, i++) {
|
||||
if (i%8==1)
|
||||
DOUT << "0x" << (long)q << ": ";
|
||||
DOUT<< (unsigned short)*q << " ";
|
||||
if (i%8==0)
|
||||
DOUT<<"\n";
|
||||
}
|
||||
DOUT << std::dec;
|
||||
if (sys::hasDisassembler())
|
||||
DOUT << "Disassembled code:\n"
|
||||
<< sys::disassembleBuffer(FnStart, FnEnd-FnStart, (uintptr_t)FnStart);
|
||||
}
|
||||
#endif
|
||||
if (ExceptionHandling) {
|
||||
uintptr_t ActualSize = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user