mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-12 06:31:14 +00:00
Do one lookup instead of two.
llvm-svn: 112434
This commit is contained in:
parent
4e9013673c
commit
defdc9d59c
@ -161,9 +161,10 @@ RegUseTracker::DropUse(size_t LUIdx) {
|
||||
|
||||
bool
|
||||
RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
|
||||
if (!RegUsesMap.count(Reg)) return false;
|
||||
const SmallBitVector &UsedByIndices =
|
||||
RegUsesMap.find(Reg)->second.UsedByIndices;
|
||||
RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
|
||||
if (I == RegUsesMap.end())
|
||||
return false;
|
||||
const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
|
||||
int i = UsedByIndices.find_first();
|
||||
if (i == -1) return false;
|
||||
if ((size_t)i != LUIdx) return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user