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

Jeff Cohen jeffc at jolt-lang.org
Wed Jan 25 09:19:02 PST 2006



Changes in directory llvm/lib/CodeGen:

DwarfWriter.cpp updated: 1.16 -> 1.17
---
Log message:

Make it even more portable.

---
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.16 llvm/lib/CodeGen/DwarfWriter.cpp:1.17
--- llvm/lib/CodeGen/DwarfWriter.cpp:1.16	Tue Jan 24 20:40:10 2006
+++ llvm/lib/CodeGen/DwarfWriter.cpp	Wed Jan 25 11:18:50 2006
@@ -645,7 +645,7 @@
 #ifndef NDEBUG
   void DIEAbbrev::print(std::ostream &O) {
     O << "Abbreviation @"
-      << std::hex << (size_t)this << std::dec
+      << std::hex << (intptr_t)this << std::dec
       << "  "
       << TagString(Tag)
       << " "






More information about the llvm-commits mailing list