[llvm] [llubi] Implement experimental vector intrinsics (PR #206899)

Yingwei Zheng via llvm-commits llvm-commits at lists.llvm.org
Sat Jul 4 11:03:47 PDT 2026


================
@@ -810,6 +810,104 @@ class InstExecutor : public InstVisitor<InstExecutor, void>,
     return AnyValue();
   }
 
+  static BooleanKind getMaskLane(const AnyValue &Mask, size_t I) {
+    assert(Mask.isAggregate());
----------------
dtcxzyw wrote:

It is already checked by `asAggregate`.

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


More information about the llvm-commits mailing list