From: Chris Lattner Date: Thu, 18 Apr 2002 18:14:56 +0000 (+0000) Subject: Make debugging code not use getStrValue X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ccc259635ace985306115566d065919fae511370;p=oota-llvm.git 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 ab22db3c7fb..2f427770d90 100644 --- a/lib/Bytecode/Writer/Writer.cpp +++ b/lib/Bytecode/Writer/Writer.cpp @@ -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(V)) { - //cerr << "Serializing value: <" << V->getType() << ">: " - // << ((const Constant*)V)->getStrValue() << ":" + //cerr << "Serializing value: <" << V->getType() << ">: " << V << ":" // << Out.size() << "\n"; outputConstant(CPV); } else {