[PATCH] D104608: [VPlan, VP] Introduce new recipes to support predicated vectorization

Alexey Bataev via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 17 10:49:19 PST 2022


ABataev added a comment.

Tests?



================
Comment at: llvm/include/llvm/IR/IRBuilder.h:2609
+  /// Return an all true boolean vector of size and scalability \p NumElts.
+  Value *getTrueVector(ElementCount NumElts) {
+    VectorType *VTy = VectorType::get(Type::getInt1Ty(Context), NumElts);
----------------
`const`


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D104608/new/

https://reviews.llvm.org/D104608



More information about the llvm-commits mailing list