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:
45730d7
)
Dont' forget to switch back to decimal output
author
Chris Lattner
<sabre@nondot.org>
Fri, 19 Nov 2004 20:57:07 +0000
(20:57 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Fri, 19 Nov 2004 20:57:07 +0000
(20:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18010
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/X86/X86CodeEmitter.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/X86/X86CodeEmitter.cpp
b/lib/Target/X86/X86CodeEmitter.cpp
index 42946c29b9e436251995850cfc7facca53eb1417..9ed9670324f73a39baae51b4238d21156095ac34 100644
(file)
--- a/
lib/Target/X86/X86CodeEmitter.cpp
+++ b/
lib/Target/X86/X86CodeEmitter.cpp
@@
-80,7
+80,8
@@
void X86JITInfo::replaceMachineCodeForFunction (void *Old, void *New) {
///
unsigned JITResolver::addFunctionReference(unsigned Address, Function *F) {
DEBUG(std::cerr << "Emitting lazily resolved reference to function '"
- << F->getName() << "' at address " << std::hex << Address << "\n");
+ << F->getName() << "' at address " << std::hex << Address
+ << std::dec << "\n");
LazyCodeGenMap[Address] = F;
return (intptr_t)&JITResolver::CompilationCallback;
}