From: Chris Lattner Date: Mon, 12 Jul 2004 20:29:52 +0000 (+0000) Subject: Fix unused var warning X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=aec6dd5bbc22187b02c893874c9755e38c50fcc0;p=oota-llvm.git Fix unused var warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14775 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Bytecode/Writer/SlotCalculator.cpp b/lib/Bytecode/Writer/SlotCalculator.cpp index f8d4b417f1d..21835ce972e 100644 --- a/lib/Bytecode/Writer/SlotCalculator.cpp +++ b/lib/Bytecode/Writer/SlotCalculator.cpp @@ -773,9 +773,8 @@ int SlotCalculator::insertType(const Type *Ty, 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 = doInsertType(SubTy); - SC_DEBUG(" Inserted subtype: " << SubTy->getDescription() << - " slot=" << Slot << "\n"); + doInsertType(SubTy); + SC_DEBUG(" Inserted subtype: " << SubTy->getDescription()); } } }