[Transforms] Use all_of instead of any_of (NFC)
authorKazu Hirata <kazu@google.com>
Mon, 3 Jan 2022 06:53:09 +0000 (22:53 -0800)
committerKazu Hirata <kazu@google.com>
Mon, 3 Jan 2022 06:53:09 +0000 (22:53 -0800)
mlir/lib/Transforms/NormalizeMemRefs.cpp

index aaf1a57..b6f9d18 100644 (file)
@@ -92,8 +92,8 @@ void NormalizeMemRefs::runOnOperation() {
 /// are satisfied will the value become a candidate for replacement.
 /// TODO: Extend this for DimOps.
 static bool isMemRefNormalizable(Value::user_range opUsers) {
-  return !llvm::any_of(opUsers, [](Operation *op) {
-    return !op->hasTrait<OpTrait::MemRefsNormalizable>();
+  return llvm::all_of(opUsers, [](Operation *op) {
+    return op->hasTrait<OpTrait::MemRefsNormalizable>();
   });
 }