[PATCH] D107290: [PoC][RISCV] Add support for the vscale_range attribute
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 20 11:57:42 PDT 2021
craig.topper added inline comments.
================
Comment at: clang/lib/Basic/Targets/RISCV.cpp:349
+ unsigned VLENMax = 65536;
+ return std::make_pair(VLENMin / 64, VLENMax / 64);
+}
----------------
Should we move RVVBitsPerBlock to RISCVTargetParser.def? Or some other place that can be shared between lllvm/lib/Target/RISCV/ and here?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D107290/new/
https://reviews.llvm.org/D107290
More information about the llvm-commits
mailing list