[gardening] Rename ValueBase::getParentBB() => getParentBlock().

This commit is contained in:
Michael Gottesman
2016-11-14 00:36:11 -08:00
parent c6c99141b5
commit a8c4cc60e8
17 changed files with 37 additions and 37 deletions

View File

@@ -689,7 +689,7 @@ static bool isRangeChecked(SILValue Start, SILValue End,
}
static bool dominates(DominanceInfo *DT, SILValue V, SILBasicBlock *B) {
if (auto ValueBB = V->getParentBB())
if (auto ValueBB = V->getParentBlock())
return DT->dominates(ValueBB, B);
return false;
}