[PATCH] D141484: [RISCV] Add zvl65536b to the target feature list

Kito Cheng via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 12 07:52:02 PST 2023


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGd6ab9cae4b68: [RISCV] Add zvl65536b to the target feature list (authored by kito-cheng).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D141484

Files:
  llvm/lib/Target/RISCV/RISCV.td


Index: llvm/lib/Target/RISCV/RISCV.td
===================================================================
--- llvm/lib/Target/RISCV/RISCV.td
+++ llvm/lib/Target/RISCV/RISCV.td
@@ -331,7 +331,7 @@
 def FeatureStdExtZvl32b : SubtargetFeature<"zvl32b", "ZvlLen", "32",
                                            "'Zvl' (Minimum Vector Length) 32">;
 
-foreach i = { 6-15 } in {
+foreach i = { 6-16 } in {
   defvar I = !shl(1, i);
   def FeatureStdExtZvl#I#b :
       SubtargetFeature<"zvl"#I#"b", "ZvlLen", !cast<string>(I),


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D141484.488655.patch
Type: text/x-patch
Size: 524 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230112/4d262369/attachment.bin>


More information about the llvm-commits mailing list