diff options
author | Andrew Waterman <andrew@sifive.com> | 2020-02-06 18:36:52 -0800 |
---|---|---|
committer | Andrew Waterman <andrew@sifive.com> | 2020-02-06 18:36:52 -0800 |
commit | 60698a4a66edd7011d054be27fa30efd7aabee3e (patch) | |
tree | 870a1068d4d72713f65521abc6db5a8c2e441fdb /riscv | |
parent | 2e60b8b06174771e1155f2dfe693cc49f8958def (diff) | |
download | spike-60698a4a66edd7011d054be27fa30efd7aabee3e.zip spike-60698a4a66edd7011d054be27fa30efd7aabee3e.tar.gz spike-60698a4a66edd7011d054be27fa30efd7aabee3e.tar.bz2 |
Fix incorrect comments
Diffstat (limited to 'riscv')
-rw-r--r-- | riscv/insns/vmsgtu_vi.h | 2 | ||||
-rw-r--r-- | riscv/insns/vmsleu_vi.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/riscv/insns/vmsgtu_vi.h b/riscv/insns/vmsgtu_vi.h index 268d437..ad8449a 100644 --- a/riscv/insns/vmsgtu_vi.h +++ b/riscv/insns/vmsgtu_vi.h @@ -1,4 +1,4 @@ -// vsgtu.vi vd, vd2, zimm5 +// vsgtu.vi vd, vd2, simm5 VI_VI_ULOOP_CMP ({ res = vs2 > simm5; diff --git a/riscv/insns/vmsleu_vi.h b/riscv/insns/vmsleu_vi.h index dc4fd18..78f7740 100644 --- a/riscv/insns/vmsleu_vi.h +++ b/riscv/insns/vmsleu_vi.h @@ -1,4 +1,4 @@ -// vsleu.vi vd, vs2, zimm5 +// vsleu.vi vd, vs2, simm5 VI_VI_ULOOP_CMP ({ res = vs2 <= simm5; |