diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-19 20:57:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-19 20:57:07 +0000 |
commit | 4cd9def8b72421faa750348dac141a20671bcd66 (patch) | |
tree | 673146e8bffc3cf134d16f118b8a0140e868a2cc | |
parent | c27389815dddff4a0e45ab5cba3f3de77329b705 (diff) | |
download | bcm5719-llvm-4cd9def8b72421faa750348dac141a20671bcd66.tar.gz bcm5719-llvm-4cd9def8b72421faa750348dac141a20671bcd66.zip |
Dont' forget to switch back to decimal output
llvm-svn: 18010
-rw-r--r-- | llvm/lib/Target/X86/X86CodeEmitter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86CodeEmitter.cpp b/llvm/lib/Target/X86/X86CodeEmitter.cpp index 42946c29b9e..9ed9670324f 100644 --- a/llvm/lib/Target/X86/X86CodeEmitter.cpp +++ b/llvm/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; } |