[llvm-commits] CVS: llvm/lib/Bytecode/Writer/ConstantWriter.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed Jul 14 19:38:42 PDT 2004



Changes in directory llvm/lib/Bytecode/Writer:

ConstantWriter.cpp updated: 1.39 -> 1.40

---
Log message:

Fix for PR341: http://llvm.cs.uiuc.edu/PR341 


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

Index: llvm/lib/Bytecode/Writer/ConstantWriter.cpp
diff -u llvm/lib/Bytecode/Writer/ConstantWriter.cpp:1.39 llvm/lib/Bytecode/Writer/ConstantWriter.cpp:1.40
--- llvm/lib/Bytecode/Writer/ConstantWriter.cpp:1.39	Sun Jul 11 12:22:07 2004
+++ llvm/lib/Bytecode/Writer/ConstantWriter.cpp	Wed Jul 14 21:38:32 2004
@@ -189,7 +189,7 @@
   case Type::LabelTyID:
   default:
     std::cerr << __FILE__ << ":" << __LINE__ << ": Don't know how to serialize"
-              << " type '" << CPV->getType() << "'\n";
+              << " type '" << *CPV->getType() << "'\n";
     break;
   }
   return;





More information about the llvm-commits mailing list