diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-18 18:14:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-18 18:14:56 +0000 |
commit | bc1f09299e2c75106720504f8e20374b30b9f7ef (patch) | |
tree | 0ab5924e89ce71464da18733d576c318472e9f72 /llvm/lib/Bytecode/Writer/Writer.cpp | |
parent | a20370661f2261a309ed5d80cf6e7cd43b42792f (diff) | |
download | bcm5719-llvm-bc1f09299e2c75106720504f8e20374b30b9f7ef.tar.gz bcm5719-llvm-bc1f09299e2c75106720504f8e20374b30b9f7ef.zip |
Make debugging code not use getStrValue
llvm-svn: 2295
Diffstat (limited to 'llvm/lib/Bytecode/Writer/Writer.cpp')
-rw-r--r-- | llvm/lib/Bytecode/Writer/Writer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp index ab22db3c7fb..2f427770d90 100644 --- a/llvm/lib/Bytecode/Writer/Writer.cpp +++ b/llvm/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<Constant>(V)) { - //cerr << "Serializing value: <" << V->getType() << ">: " - // << ((const Constant*)V)->getStrValue() << ":" + //cerr << "Serializing value: <" << V->getType() << ">: " << V << ":" // << Out.size() << "\n"; outputConstant(CPV); } else { |