mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 14:22:26 +00:00
[SimplifyLibCalls] Use any_of(). Suggested by David Blaikie!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254239 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d3af7cc9d9
commit
46cdbe2048
@ -86,10 +86,9 @@ static bool isOnlyUsedInEqualityComparison(Value *V, Value *With) {
|
||||
}
|
||||
|
||||
static bool callHasFloatingPointArgument(const CallInst *CI) {
|
||||
for (const Use &OI : CI->operands())
|
||||
if (OI->getType()->isFloatingPointTy())
|
||||
return true;
|
||||
return false;
|
||||
return std::any_of(CI->op_begin(), CI->op_end(), [](const Use &OI) {
|
||||
return OI->getType()->isFloatingPointTy();
|
||||
});
|
||||
}
|
||||
|
||||
/// \brief Check whether the overloaded unary floating point function
|
||||
|
Loading…
x
Reference in New Issue
Block a user