From: Brian Gaeke Date: Mon, 30 Jun 2003 18:06:20 +0000 (+0000) Subject: Get rid of the duplicate '0x' in debug mode. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=02c26b681ec70538fba8b273326e696e6a3dc4d2;p=oota-llvm.git Get rid of the duplicate '0x' in debug mode. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7012 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/ExecutionEngine/JIT/JITEmitter.cpp b/lib/ExecutionEngine/JIT/JITEmitter.cpp index 8236034f582..4ef78a54b98 100644 --- a/lib/ExecutionEngine/JIT/JITEmitter.cpp +++ b/lib/ExecutionEngine/JIT/JITEmitter.cpp @@ -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"); }