Skip to content

Commit

Permalink
Merge pull request #1506 from riscv-software-src/fix-1505
Browse files Browse the repository at this point in the history
Don't enforce alignment constraints vwsll.v[xi] rs1 arg
  • Loading branch information
jerryz123 authored Dec 11, 2023
2 parents f1e0be8 + 874ac59 commit 19078c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions riscv/zvk_ext_macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@
// - 'rs1', unsigned, SEW width, by value, constant.
#define VI_ZVK_VX_WIDENING_ULOOP(BODY) \
do { \
VI_CHECK_DSS(true); \
VI_CHECK_DSS(false); \
VI_LOOP_BASE \
switch (sew) { \
case e8: { \
Expand Down Expand Up @@ -788,7 +788,7 @@
// - 'zimm5', unsigned, SEW width, by value, constant.
#define VI_ZVK_VI_WIDENING_ULOOP(BODY) \
do { \
VI_CHECK_DSS(true); \
VI_CHECK_DSS(false); \
VI_LOOP_BASE \
switch (sew) { \
case e8: { \
Expand Down

0 comments on commit 19078c1

Please sign in to comment.