[llvm-commits] CVS: llvm/tools/lli/JIT/Emitter.cpp
Brian Gaeke
gaeke at cs.uiuc.edu
Mon Jun 30 13:07:01 PDT 2003
Changes in directory llvm/tools/lli/JIT:
Emitter.cpp updated: 1.15 -> 1.16
---
Log message:
Get rid of the duplicate '0x' in debug mode.
---
Diffs of the changes:
Index: llvm/tools/lli/JIT/Emitter.cpp
diff -u llvm/tools/lli/JIT/Emitter.cpp:1.15 llvm/tools/lli/JIT/Emitter.cpp:1.16
--- llvm/tools/lli/JIT/Emitter.cpp:1.15 Tue Jun 17 18:14:06 2003
+++ llvm/tools/lli/JIT/Emitter.cpp Mon Jun 30 13:06:20 2003
@@ -107,7 +107,7 @@
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");
}
More information about the llvm-commits
mailing list