Remove debug output that's not really useful.
authorEvan Cheng <evan.cheng@apple.com>
Wed, 5 Nov 2008 23:21:11 +0000 (23:21 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Wed, 5 Nov 2008 23:21:11 +0000 (23:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58778 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/JIT/JITEmitter.cpp

index 0a61c06ec988f8cf93c86ca7825ff7b84b72cafc..98822c8c9a3be776e57697e544326a0520381c6f 100644 (file)
@@ -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;