projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1aa8ac
)
Get rid of the duplicate '0x' in debug mode.
author
Brian Gaeke
<gaeke@uiuc.edu>
Mon, 30 Jun 2003 18:06:20 +0000
(18:06 +0000)
committer
Brian 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
patch
|
blob
|
history
diff --git
a/lib/ExecutionEngine/JIT/JITEmitter.cpp
b/lib/ExecutionEngine/JIT/JITEmitter.cpp
index 8236034f58291b064c3ef92fc90a7b1a5b73998c..4ef78a54b98a87d2de3b8e6364f62fc03d04eadc 100644
(file)
--- 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");
}