aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/rem.h
diff options
context:
space:
mode:
authorAndrew Waterman <waterman@cs.berkeley.edu>2015-02-08 00:13:48 -0800
committerAndrew Waterman <waterman@cs.berkeley.edu>2015-02-08 00:13:48 -0800
commite671e751982cfa065bb6430a0b5b33cd5f9ddfec (patch)
treede3391e3c20d1c8d6d8bafd5f4b8fb01b3f7464f /riscv/insns/rem.h
parentd8022e9eda1d83211b42c523483f6d9f7da3cefa (diff)
downloadspike-e671e751982cfa065bb6430a0b5b33cd5f9ddfec.zip
spike-e671e751982cfa065bb6430a0b5b33cd5f9ddfec.tar.gz
spike-e671e751982cfa065bb6430a0b5b33cd5f9ddfec.tar.bz2
Use xlen, not xprlen, to refer to x-register width
Diffstat (limited to 'riscv/insns/rem.h')
-rw-r--r--riscv/insns/rem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/riscv/insns/rem.h b/riscv/insns/rem.h
index fa98ac6..d074f26 100644
--- a/riscv/insns/rem.h
+++ b/riscv/insns/rem.h
@@ -1,8 +1,8 @@
-sreg_t lhs = sext_xprlen(RS1);
-sreg_t rhs = sext_xprlen(RS2);
+sreg_t lhs = sext_xlen(RS1);
+sreg_t rhs = sext_xlen(RS2);
if(rhs == 0)
WRITE_RD(lhs);
else if(lhs == INT64_MIN && rhs == -1)
WRITE_RD(0);
else
- WRITE_RD(sext_xprlen(lhs % rhs));
+ WRITE_RD(sext_xlen(lhs % rhs));