aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Writer/SlotCalculator.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-06-25 00:35:55 +0000
committerChris Lattner <sabre@nondot.org>2004-06-25 00:35:55 +0000
commitd61622857fb4df110ee7dba11fd2955eaa14853c (patch)
tree5b36b907d752953b1e251efd88437ec3774b707c /lib/Bytecode/Writer/SlotCalculator.cpp
parent990a6a39c0f2899ace6e913d536db5abc030c5cc (diff)
Fix more warnings building with VC++
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14391 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Writer/SlotCalculator.cpp')
-rw-r--r--lib/Bytecode/Writer/SlotCalculator.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Bytecode/Writer/SlotCalculator.cpp b/lib/Bytecode/Writer/SlotCalculator.cpp
index 97d336e2db..94791e37b1 100644
--- a/lib/Bytecode/Writer/SlotCalculator.cpp
+++ b/lib/Bytecode/Writer/SlotCalculator.cpp
@@ -717,7 +717,8 @@ int SlotCalculator::insertValue(const Value *D, bool dontIgnore) {
// If we haven't seen this sub type before, add it to our type table!
if (getSlot(SubTy) == -1) {
SC_DEBUG(" Inserting subtype: " << SubTy->getDescription() << "\n");
- int Slot = doInsertValue(SubTy);
+ SC_DEBUG(int Slot = );
+ doInsertValue(SubTy);
SC_DEBUG(" Inserted subtype: " << SubTy->getDescription() <<
" slot=" << Slot << "\n");
}