Use all_of to simplify control flow. NFC.

llvm-svn: 251202
This commit is contained in:
Benjamin Kramer 2015-10-24 19:30:37 +00:00
parent 57fa135b40
commit 5611561e99
2 changed files with 4 additions and 16 deletions

View File

@ -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);

View File

@ -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;