From 5611561e99241a65a85fd07af33f07e99a897076 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Sat, 24 Oct 2015 19:30:37 +0000 Subject: Use all_of to simplify control flow. NFC. llvm-svn: 251202 --- llvm/lib/Analysis/CodeMetrics.cpp | 10 ++-------- llvm/lib/Analysis/ValueTracking.cpp | 10 ++-------- 2 files changed, 4 insertions(+), 16 deletions(-) (limited to 'llvm/lib/Analysis') diff --git a/llvm/lib/Analysis/CodeMetrics.cpp b/llvm/lib/Analysis/CodeMetrics.cpp index 90fddc539dc..4090b4cd752 100644 --- a/llvm/lib/Analysis/CodeMetrics.cpp +++ b/llvm/lib/Analysis/CodeMetrics.cpp @@ -45,14 +45,8 @@ static void completeEphemeralValues(SmallVector &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); diff --git a/llvm/lib/Analysis/ValueTracking.cpp b/llvm/lib/Analysis/ValueTracking.cpp index 0fe87176f88..bb4220d6164 100644 --- a/llvm/lib/Analysis/ValueTracking.cpp +++ b/llvm/lib/Analysis/ValueTracking.cpp @@ -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; -- cgit v1.2.3