[llvm] [clang] [RISCV] Remove experimental from Vector Crypto extensions (PR #74213)
Craig Topper via cfe-commits
cfe-commits at lists.llvm.org
Thu Dec 7 08:46:51 PST 2023
================
@@ -485,7 +485,7 @@ class RVVIntrinsic {
// RVVRequire should be sync'ed with target features, but only
// required features used in riscv_vector.td.
-enum RVVRequire : uint16_t {
+enum RVVRequire : unsigned int {
----------------
topperc wrote:
Use uint32_t since we're counting bits.
https://github.com/llvm/llvm-project/pull/74213
More information about the cfe-commits
mailing list