aboutsummaryrefslogtreecommitdiffstats
path: root/tests/remu.S
diff options
context:
space:
mode:
Diffstat (limited to 'tests/remu.S')
-rw-r--r--tests/remu.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/remu.S b/tests/remu.S
index 38d641d..a96cfc1 100644
--- a/tests/remu.S
+++ b/tests/remu.S
@@ -22,10 +22,10 @@ RVTEST_CODE_BEGIN
TEST_RR_OP( 4, remu, 20, 20, -6 );
TEST_RR_OP( 5, remu, -20, -20, -6 );
- TEST_RR_OP( 6, remu, 0, -1<<63, 1 );
- TEST_RR_OP( 7, remu, -1<<63, -1<<63, -1 );
+ TEST_RR_OP( 6, remu, 0, -1<<31, 1 );
+ TEST_RR_OP( 7, remu, -1<<31, -1<<31, -1 );
- TEST_RR_OP( 8, remu, -1<<63, -1<<63, 0 );
+ TEST_RR_OP( 8, remu, -1<<31, -1<<31, 0 );
TEST_RR_OP( 9, remu, 1, 1, 0 );
TEST_RR_OP(10, remu, 0, 0, 0 );