aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/uclip16.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/insns/uclip16.h')
-rw-r--r--riscv/insns/uclip16.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/riscv/insns/uclip16.h b/riscv/insns/uclip16.h
deleted file mode 100644
index 4cc2519..0000000
--- a/riscv/insns/uclip16.h
+++ /dev/null
@@ -1,13 +0,0 @@
-require_vector_vs;
-P_I_LOOP(16, 4, {
- int64_t uint_max = imm4u ? UINT64_MAX >> (64 - imm4u) : 0;
- pd = ps1;
-
- if (ps1 > uint_max) {
- pd = uint_max;
- P_SET_OV(1);
- } else if (ps1 < 0) {
- pd = 0;
- P_SET_OV(1);
- }
-})