[llvm-commits] CVS: llvm/lib/Target/X86/X86CodeEmitter.cpp

Chris Lattner lattner at cs.uiuc.edu
Fri Nov 19 12:57:20 PST 2004



Changes in directory llvm/lib/Target/X86:

X86CodeEmitter.cpp updated: 1.75 -> 1.76
---
Log message:

Dont' forget to switch back to decimal output


---
Diffs of the changes:  (+2 -1)

Index: llvm/lib/Target/X86/X86CodeEmitter.cpp
diff -u llvm/lib/Target/X86/X86CodeEmitter.cpp:1.75 llvm/lib/Target/X86/X86CodeEmitter.cpp:1.76
--- llvm/lib/Target/X86/X86CodeEmitter.cpp:1.75	Tue Nov 16 12:40:52 2004
+++ llvm/lib/Target/X86/X86CodeEmitter.cpp	Fri Nov 19 14:57:07 2004
@@ -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;
 }






More information about the llvm-commits mailing list