We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ef1e69 commit 8829503Copy full SHA for 8829503
llvm/lib/FuzzMutate/IRMutator.cpp
@@ -389,9 +389,9 @@ static bool isUnsupportedFunction(Function *F) {
389
Attribute::Preallocated, Attribute::ByRef,
390
Attribute::ZExt, Attribute::SExt};
391
392
- return std::any_of(
393
- std::begin(ABIAttrs), std::end(ABIAttrs),
394
- [&](Attribute::AttrKind kind) { return A.hasAttribute(kind); });
+ return llvm::any_of(ABIAttrs, [&](Attribute::AttrKind kind) {
+ return A.hasAttribute(kind);
+ });
395
};
396
397
auto FuncAttrs = F->getAttributes();
0 commit comments