[llvm] [VPlan] Remove no-op SCALAR-STEPS after unrolling. (PR #123655)

David Sherwood via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 25 04:15:19 PDT 2025


================
@@ -3593,6 +3597,9 @@ class VPlan {
     UFs.insert(UF);
   }
 
+  /// Returns true if the VPlan already has been unrolled, i.e. it has UF = 1.
+  unsigned isUnrolled() const { return UFs.size() == 1 && UFs.back() == 1; }
----------------
david-arm wrote:

Should this return a `bool`?

https://github.com/llvm/llvm-project/pull/123655


More information about the llvm-commits mailing list