Make debugging code not use getStrValue

llvm-svn: 2295
This commit is contained in:
Chris Lattner 2002-04-18 18:14:56 +00:00
parent e935ad94d0
commit f43286a1e4

View 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 {