aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Writer/Writer.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-18 18:14:56 +0000
committerChris Lattner <sabre@nondot.org>2002-04-18 18:14:56 +0000
commitccc259635ace985306115566d065919fae511370 (patch)
tree0aaf219ff8328b3ab3659820f2c62985d098772c /lib/Bytecode/Writer/Writer.cpp
parent6228106e9fefece48d70300b237d1cc2618943cf (diff)
Make debugging code not use getStrValue
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2295 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Writer/Writer.cpp')
-rw-r--r--lib/Bytecode/Writer/Writer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Bytecode/Writer/Writer.cpp b/lib/Bytecode/Writer/Writer.cpp
index ab22db3c7f..2f427770d9 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<Constant>(V)) {
- //cerr << "Serializing value: <" << V->getType() << ">: "
- // << ((const Constant*)V)->getStrValue() << ":"
+ //cerr << "Serializing value: <" << V->getType() << ">: " << V << ":"
// << Out.size() << "\n";
outputConstant(CPV);
} else {