aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--riscv/insns/vfsgnj_vf.h2
-rw-r--r--riscv/insns/vfsgnj_vv.h2
-rw-r--r--riscv/insns/vfsgnjn_vf.h2
-rw-r--r--riscv/insns/vfsgnjn_vv.h2
-rw-r--r--riscv/insns/vfsgnjx_vf.h2
-rw-r--r--riscv/insns/vfsgnjx_vv.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/riscv/insns/vfsgnj_vf.h b/riscv/insns/vfsgnj_vf.h
index 90d78fa..d93f175 100644
--- a/riscv/insns/vfsgnj_vf.h
+++ b/riscv/insns/vfsgnj_vf.h
@@ -1,5 +1,5 @@
// vfsgnj vd, vs2, vs1
VI_VFP_VF_LOOP
({
- vd = fsgnj32(rs1.v, vs2.v, false, false);
+ vd = fsgnj32(vs2.v, rs1.v, false, false);
})
diff --git a/riscv/insns/vfsgnj_vv.h b/riscv/insns/vfsgnj_vv.h
index 1662a4c..050dd9c 100644
--- a/riscv/insns/vfsgnj_vv.h
+++ b/riscv/insns/vfsgnj_vv.h
@@ -1,5 +1,5 @@
// vfsgnj
VI_VFP_VV_LOOP
({
- vd = fsgnj32(vs1.v, vs2.v, false, false);
+ vd = fsgnj32(vs2.v, vs1.v, false, false);
})
diff --git a/riscv/insns/vfsgnjn_vf.h b/riscv/insns/vfsgnjn_vf.h
index af722eb..303ec76 100644
--- a/riscv/insns/vfsgnjn_vf.h
+++ b/riscv/insns/vfsgnjn_vf.h
@@ -1,5 +1,5 @@
// vfsgnn
VI_VFP_VF_LOOP
({
- vd = fsgnj32(rs1.v, vs2.v, true, false);
+ vd = fsgnj32(vs2.v, rs1.v, true, false);
})
diff --git a/riscv/insns/vfsgnjn_vv.h b/riscv/insns/vfsgnjn_vv.h
index 6ae3369..6603352 100644
--- a/riscv/insns/vfsgnjn_vv.h
+++ b/riscv/insns/vfsgnjn_vv.h
@@ -1,5 +1,5 @@
// vfsgnn
VI_VFP_VV_LOOP
({
- vd = fsgnj32(vs1.v, vs2.v, true, false);
+ vd = fsgnj32(vs2.v, vs1.v, true, false);
})
diff --git a/riscv/insns/vfsgnjx_vf.h b/riscv/insns/vfsgnjx_vf.h
index 1e82369..93f4303 100644
--- a/riscv/insns/vfsgnjx_vf.h
+++ b/riscv/insns/vfsgnjx_vf.h
@@ -1,5 +1,5 @@
// vfsgnx
VI_VFP_VF_LOOP
({
- vd = fsgnj32(rs1.v, vs2.v, false, true);
+ vd = fsgnj32(vs2.v, rs1.v, false, true);
})
diff --git a/riscv/insns/vfsgnjx_vv.h b/riscv/insns/vfsgnjx_vv.h
index ba1cb9b..9cc12dc 100644
--- a/riscv/insns/vfsgnjx_vv.h
+++ b/riscv/insns/vfsgnjx_vv.h
@@ -1,5 +1,5 @@
// vfsgnx
VI_VFP_VV_LOOP
({
- vd = fsgnj32(vs1.v, vs2.v, false, true);
+ vd = fsgnj32(vs2.v, vs1.v, false, true);
})