Dont' forget to switch back to decimal output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18010 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/X86/X86CodeEmitter.cpp b/lib/Target/X86/X86CodeEmitter.cpp
index 42946c2..9ed9670 100644
--- a/lib/Target/X86/X86CodeEmitter.cpp
+++ b/lib/Target/X86/X86CodeEmitter.cpp
@@ -80,7 +80,8 @@
///
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;
}