aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vsbc_vvm.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/insns/vsbc_vvm.h')
-rw-r--r--riscv/insns/vsbc_vvm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscv/insns/vsbc_vvm.h b/riscv/insns/vsbc_vvm.h
index 314077d..96b8bb8 100644
--- a/riscv/insns/vsbc_vvm.h
+++ b/riscv/insns/vsbc_vvm.h
@@ -5,6 +5,6 @@ VI_VV_LOOP_WITH_CARRY
const uint128_t op_mask = (UINT64_MAX >> (64 - sew));
uint64_t carry = (v0 >> mpos) & 0x1;
- uint128_t res = (op_mask & vs1) - (op_mask & vs2) - carry;
+ uint128_t res = (op_mask & vs2) - (op_mask & vs1) - carry;
vd = res;
})