aboutsummaryrefslogtreecommitdiff
path: root/isa/rv32ui/rem.S
diff options
context:
space:
mode:
authorHoward Mao <zhehao.mao@gmail.com>2016-06-22 15:53:38 -0700
committerHoward Mao <zhehao.mao@gmail.com>2016-06-22 15:53:38 -0700
commit51671844c2588386ce3eacedf40d385e3c2b1484 (patch)
tree3ad4c759cb0b4c9712a95d11f99a6241877a169e /isa/rv32ui/rem.S
parentb6b5e81217c1f2a70ecb6883b1756859cd7bb999 (diff)
downloadriscv-tests-51671844c2588386ce3eacedf40d385e3c2b1484.zip
riscv-tests-51671844c2588386ce3eacedf40d385e3c2b1484.tar.gz
riscv-tests-51671844c2588386ce3eacedf40d385e3c2b1484.tar.bz2
separate ua and um tests from ui testssplit-isa-tests
Diffstat (limited to 'isa/rv32ui/rem.S')
-rw-r--r--isa/rv32ui/rem.S41
1 files changed, 0 insertions, 41 deletions
diff --git a/isa/rv32ui/rem.S b/isa/rv32ui/rem.S
deleted file mode 100644
index c318e2c..0000000
--- a/isa/rv32ui/rem.S
+++ /dev/null
@@ -1,41 +0,0 @@
-# See LICENSE for license details.
-
-#*****************************************************************************
-# rem.S
-#-----------------------------------------------------------------------------
-#
-# Test rem instruction.
-#
-
-#include "riscv_test.h"
-#include "test_macros.h"
-
-RVTEST_RV32U
-RVTEST_CODE_BEGIN
-
- #-------------------------------------------------------------
- # Arithmetic tests
- #-------------------------------------------------------------
-
- TEST_RR_OP( 2, rem, 2, 20, 6 );
- TEST_RR_OP( 3, rem, -2, -20, 6 );
- TEST_RR_OP( 4, rem, 2, 20, -6 );
- TEST_RR_OP( 5, rem, -2, -20, -6 );
-
- TEST_RR_OP( 6, rem, 0, -1<<63, 1 );
- TEST_RR_OP( 7, rem, 0, -1<<63, -1 );
-
- TEST_RR_OP( 8, rem, -1<<63, -1<<63, 0 );
- TEST_RR_OP( 9, rem, 1, 1, 0 );
- TEST_RR_OP(10, rem, 0, 0, 0 );
-
- TEST_PASSFAIL
-
-RVTEST_CODE_END
-
- .data
-RVTEST_DATA_BEGIN
-
- TEST_DATA
-
-RVTEST_DATA_END