aboutsummaryrefslogtreecommitdiff
path: root/isa/rv64ui/amominu_d.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/rv64ui/amominu_d.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/rv64ui/amominu_d.S')
-rw-r--r--isa/rv64ui/amominu_d.S49
1 files changed, 0 insertions, 49 deletions
diff --git a/isa/rv64ui/amominu_d.S b/isa/rv64ui/amominu_d.S
deleted file mode 100644
index a1013f3..0000000
--- a/isa/rv64ui/amominu_d.S
+++ /dev/null
@@ -1,49 +0,0 @@
-# See LICENSE for license details.
-
-#*****************************************************************************
-# amominu_d.S
-#-----------------------------------------------------------------------------
-#
-# Test amominu.d instruction.
-#
-
-#include "riscv_test.h"
-#include "test_macros.h"
-
-RVTEST_RV64U
-RVTEST_CODE_BEGIN
-
- TEST_CASE(2, a4, 0xffffffff80000000, \
- li a0, 0xffffffff80000000; \
- li a1, 0xfffffffffffff800; \
- la a3, amo_operand; \
- sd a0, 0(a3); \
- amominu.d a4, a1, 0(a3); \
- )
-
- TEST_CASE(3, a5, 0xffffffff80000000, ld a5, 0(a3))
-
- TEST_CASE(4, a4, 0, \
- li a1, 0xffffffffffffffff; \
- sd x0, 0(a3); \
- amominu.d a4, a1, 0(a3); \
- )
-
- TEST_CASE(5, a5, 0, ld a5, 0(a3))
-
- TEST_PASSFAIL
-
-RVTEST_CODE_END
-
- .data
-RVTEST_DATA_BEGIN
-
- TEST_DATA
-
-RVTEST_DATA_END
-
- .bss
- .align 3
-amo_operand:
- .dword 0
- .skip 65536