mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-26 04:34:41 +00:00
Use all_of to simplify control flow. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251202 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bf4fbb2909
commit
ba3f3a65e6
@ -45,14 +45,8 @@ static void completeEphemeralValues(SmallVector<const Value *, 16> &WorkSet,
|
||||
continue;
|
||||
|
||||
// If all uses of this value are ephemeral, then so is this value.
|
||||
bool FoundNEUse = false;
|
||||
for (const User *I : V->users())
|
||||
if (!EphValues.count(I)) {
|
||||
FoundNEUse = true;
|
||||
break;
|
||||
}
|
||||
|
||||
if (FoundNEUse)
|
||||
if (!std::all_of(V->user_begin(), V->user_end(),
|
||||
[&](const User *U) { return EphValues.count(U); }))
|
||||
continue;
|
||||
|
||||
EphValues.insert(V);
|
||||
|
@ -405,14 +405,8 @@ static bool isEphemeralValueOf(Instruction *I, const Value *E) {
|
||||
continue;
|
||||
|
||||
// If all uses of this value are ephemeral, then so is this value.
|
||||
bool FoundNEUse = false;
|
||||
for (const User *I : V->users())
|
||||
if (!EphValues.count(I)) {
|
||||
FoundNEUse = true;
|
||||
break;
|
||||
}
|
||||
|
||||
if (!FoundNEUse) {
|
||||
if (std::all_of(V->user_begin(), V->user_end(),
|
||||
[&](const User *U) { return EphValues.count(U); })) {
|
||||
if (V == E)
|
||||
return true;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user