aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vmflt_vv.h
diff options
context:
space:
mode:
authoreopXD <yueh.ting.chen@gmail.com>2021-12-08 01:21:46 +0800
committereopXD <yueh.ting.chen@gmail.com>2021-12-08 01:21:46 +0800
commit626fce2075e7907583e07f72f16187d6915ae84d (patch)
tree480491b3eb4ac727e5cebb8bc58ad9dceeba748a /riscv/insns/vmflt_vv.h
parent278a7dd43477ef8d05f534c302e123eae5012fe7 (diff)
downloadspike-626fce2075e7907583e07f72f16187d6915ae84d.zip
spike-626fce2075e7907583e07f72f16187d6915ae84d.tar.gz
spike-626fce2075e7907583e07f72f16187d6915ae84d.tar.bz2
Simplify floating point compare instructions
Diffstat (limited to 'riscv/insns/vmflt_vv.h')
-rw-r--r--riscv/insns/vmflt_vv.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/riscv/insns/vmflt_vv.h b/riscv/insns/vmflt_vv.h
index cdfc3fa..35f8d70 100644
--- a/riscv/insns/vmflt_vv.h
+++ b/riscv/insns/vmflt_vv.h
@@ -1,5 +1,5 @@
// vmflt.vv vd, vs2, vs1
-VI_VFP_LOOP_CMP
+VI_VFP_VV_LOOP_CMP
({
res = f16_lt(vs2, vs1);
},
@@ -8,5 +8,4 @@ VI_VFP_LOOP_CMP
},
{
res = f64_lt(vs2, vs1);
-},
-true)
+})