aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/kdmbb16.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/insns/kdmbb16.h')
-rw-r--r--riscv/insns/kdmbb16.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/riscv/insns/kdmbb16.h b/riscv/insns/kdmbb16.h
deleted file mode 100644
index a84877d..0000000
--- a/riscv/insns/kdmbb16.h
+++ /dev/null
@@ -1,13 +0,0 @@
-require_vector_vs;
-require_rv64;
-P_LOOP(32, {
- int32_t aop = P_SH(ps1, 0);
- int32_t bop = P_SH(ps2, 0);
- if ((INT16_MIN != aop) | (INT16_MIN != bop)) {
- pd = aop * bop;
- pd <<= 1;
- } else {
- pd = INT32_MAX;
- P_SET_OV(1);
- }
-})