projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6228106
)
Make debugging code not use getStrValue
author
Chris Lattner
<sabre@nondot.org>
Thu, 18 Apr 2002 18:14:56 +0000
(18:14 +0000)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/lib/Bytecode/Writer/Writer.cpp
b/lib/Bytecode/Writer/Writer.cpp
index ab22db3c7fbb811fc10884dac0a7587d3efd065e..2f427770d9083aca56340bc5b87720aefb6161f5 100644
(file)
--- 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 {