Make debugging code not use getStrValue


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2295 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Bytecode/Writer/Writer.cpp b/lib/Bytecode/Writer/Writer.cpp
index ab22db3..2f42777 100644
--- a/lib/Bytecode/Writer/Writer.cpp
+++ b/lib/Bytecode/Writer/Writer.cpp
@@ -98,8 +98,7 @@
     for (unsigned i = ValNo; i < ValNo+NC; ++i) {
       const Value *V = Plane[i];
       if (const Constant *CPV = dyn_cast<Constant>(V)) {
-	//cerr << "Serializing value: <" << V->getType() << ">: " 
-	//     << ((const Constant*)V)->getStrValue() << ":" 
+	//cerr << "Serializing value: <" << V->getType() << ">: " << V << ":" 
 	//     << Out.size() << "\n";
 	outputConstant(CPV);
       } else {