From a00e8c6732ebdc58d5d92988eb9317386c000553 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Mon, 30 Jun 2003 18:06:20 +0000 Subject: [PATCH] Get rid of the duplicate '0x' in debug mode. llvm-svn: 7012 --- lib/ExecutionEngine/JIT/Emitter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ExecutionEngine/JIT/Emitter.cpp b/lib/ExecutionEngine/JIT/Emitter.cpp index 8236034f582..4ef78a54b98 100644 --- a/lib/ExecutionEngine/JIT/Emitter.cpp +++ b/lib/ExecutionEngine/JIT/Emitter.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"); }