[llvm-commits] CVS: llvm/lib/CodeGen/DwarfWriter.cpp

Andrew Lenharth alenhar2 at cs.uiuc.edu
Tue Jan 24 13:26:55 PST 2006



Changes in directory llvm/lib/CodeGen:

DwarfWriter.cpp updated: 1.14 -> 1.15
---
Log message:

fix build on 64 bit hosts

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

 DwarfWriter.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/CodeGen/DwarfWriter.cpp
diff -u llvm/lib/CodeGen/DwarfWriter.cpp:1.14 llvm/lib/CodeGen/DwarfWriter.cpp:1.15
--- llvm/lib/CodeGen/DwarfWriter.cpp:1.14	Mon Jan 23 22:42:53 2006
+++ llvm/lib/CodeGen/DwarfWriter.cpp	Tue Jan 24 15:26:43 2006
@@ -645,7 +645,7 @@
 #ifndef NDEBUG
   void DIEAbbrev::print(std::ostream &O) {
     O << "Abbreviation @"
-      << std::hex << (unsigned)this << std::dec
+      << std::hex << (unsigned long)this << std::dec
       << "  "
       << TagString(Tag)
       << " "






More information about the llvm-commits mailing list