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