[PATCH] D145088: [RISCV] Add attribute(riscv_rvv_vector_bits(N)) based on AArch64 arm_sve_vector_bits.
Aaron Ballman via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 3 07:40:56 PDT 2023
aaron.ballman added reviewers: erichkeane, rjmccall, efriedma.
aaron.ballman added a comment.
Adding Erich as attributes code owner and John/Eli as ABI code owners.
================
Comment at: clang/lib/Sema/SemaType.cpp:8265
+ // The attribute vector size must match -mrvv-vector-bits.
+ // FIXME: LMUL from type and scale it.
+ if (VecSize != VScale->first * llvm::RISCV::RVVBitsPerBlock) {
----------------
Should this be done as part of this patch (are we accepting code we shouldn't be accepting)?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145088/new/
https://reviews.llvm.org/D145088
More information about the cfe-commits
mailing list