[llvm] 16df836 - [VPlan] Mark hasVF & hasScalableVF as const (NFC).
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 8 03:32:41 PST 2025
Author: Florian Hahn
Date: 2025-02-08T11:32:23Z
New Revision: 16df836a527e4a04d2cbdb52365c81ff80e3e757
URL: https://github.com/llvm/llvm-project/commit/16df836a527e4a04d2cbdb52365c81ff80e3e757
DIFF: https://github.com/llvm/llvm-project/commit/16df836a527e4a04d2cbdb52365c81ff80e3e757.diff
LOG: [VPlan] Mark hasVF & hasScalableVF as const (NFC).
Added:
Modified:
llvm/lib/Transforms/Vectorize/VPlan.h
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Vectorize/VPlan.h b/llvm/lib/Transforms/Vectorize/VPlan.h
index 9988e03e9fdca1..30c568c3035f6c 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.h
+++ b/llvm/lib/Transforms/Vectorize/VPlan.h
@@ -3669,8 +3669,8 @@ class VPlan {
VFs.insert(VF);
}
- bool hasVF(ElementCount VF) { return VFs.count(VF); }
- bool hasScalableVF() {
+ bool hasVF(ElementCount VF) const { return VFs.count(VF); }
+ bool hasScalableVF() const {
return any_of(VFs, [](ElementCount VF) { return VF.isScalable(); });
}
More information about the llvm-commits
mailing list