Make debugging code not use getStrValue
authorChris Lattner <sabre@nondot.org>
Thu, 18 Apr 2002 18:14:56 +0000 (18:14 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 18 Apr 2002 18:14:56 +0000 (18:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2295 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Writer/Writer.cpp

index ab22db3c7fbb811fc10884dac0a7587d3efd065e..2f427770d9083aca56340bc5b87720aefb6161f5 100644 (file)
@@ -98,8 +98,7 @@ void BytecodeWriter::outputConstants(bool isFunction) {
     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 {