mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-02 00:35:27 +00:00
It's not necessary to check if Base is null here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65157 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
79fb3b434f
commit
f0baa6e9cb
@ -1548,8 +1548,7 @@ bool LoopStrengthReduce::ShouldUseFullStrengthReductionMode(
|
||||
// a register for their base, full strength-reduction will increase
|
||||
// register pressure.
|
||||
for (unsigned i = 0, e = UsersToProcess.size(); i != e; ++i)
|
||||
if (!UsersToProcess[i].Base ||
|
||||
UsersToProcess[i].Base->isZero())
|
||||
if (UsersToProcess[i].Base->isZero())
|
||||
return false;
|
||||
|
||||
// Otherwise, go for it.
|
||||
|
Loading…
x
Reference in New Issue
Block a user