mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-27 14:45:50 +00:00
Fix unused var warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14775 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
88e2b780cb
commit
aec6dd5bbc
@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user