aboutsummaryrefslogtreecommitdiff
path: root/riscv
diff options
context:
space:
mode:
Diffstat (limited to 'riscv')
-rw-r--r--riscv/execute.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/riscv/execute.cc b/riscv/execute.cc
index e5513d8..7e89cd1 100644
--- a/riscv/execute.cc
+++ b/riscv/execute.cc
@@ -109,8 +109,8 @@ static void commit_log_print_insn(processor_t *p, reg_t pc, insn_t insn)
if (!show_vec && (is_vreg || is_vec)) {
fprintf(log_file, " e%ld %s%ld l%ld",
p->VU.vsew,
- p->VU.vflmul < 0 ? "mf" : "m",
- p->VU.vflmul < 0 ? (reg_t)(1 / p->VU.vflmul) : (reg_t)p->VU.vflmul,
+ p->VU.vflmul < 1 ? "mf" : "m",
+ p->VU.vflmul < 1 ? (reg_t)(1 / p->VU.vflmul) : (reg_t)p->VU.vflmul,
p->VU.vl);
show_vec = true;
}