From 2975e674ec732fb992b9df049b81558bb17f5ca7 Mon Sep 17 00:00:00 2001 From: Ramkumar Ramachandra Date: Fri, 22 Aug 2025 12:01:42 +0100 Subject: [PATCH] [VPlan] Improve style in match_combine_or (NFC) (#154793) --- llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h b/llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h index fffb1957257b..490c5c4cce79 100644 --- a/llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h +++ b/llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h @@ -153,11 +153,7 @@ template struct match_combine_or { match_combine_or(const LTy &Left, const RTy &Right) : L(Left), R(Right) {} template bool match(ITy *V) const { - if (L.match(V)) - return true; - if (R.match(V)) - return true; - return false; + return L.match(V) || R.match(V); } };