Get rid of the duplicate '0x' in debug mode.
authorBrian Gaeke <gaeke@uiuc.edu>
Mon, 30 Jun 2003 18:06:20 +0000 (18:06 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Mon, 30 Jun 2003 18:06:20 +0000 (18:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7012 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/JIT/JITEmitter.cpp

index 8236034f58291b064c3ef92fc90a7b1a5b73998c..4ef78a54b98a87d2de3b8e6364f62fc03d04eadc 100644 (file)
@@ -107,7 +107,7 @@ void Emitter::finishFunction(MachineFunction &F) {
   ConstantPoolAddresses.clear();
   NumBytes += CurByte-CurBlock;
 
-  DEBUG(std::cerr << "Finished CodeGen of [0x" << (void*)CurBlock
+  DEBUG(std::cerr << "Finished CodeGen of [" << (void*)CurBlock
                   << "] Function: " << F.getFunction()->getName()
                   << ": " << CurByte-CurBlock << " bytes of text\n");
 }