diff options
author | Andrei Tatarnikov <andrewt0301@gmail.com> | 2018-04-09 21:24:04 +0300 |
---|---|---|
committer | Andrew Waterman <aswaterman@gmail.com> | 2018-04-09 11:24:04 -0700 |
commit | d63a6a4ad0057614d1c838c1b506b6fa0032de01 (patch) | |
tree | 5abb308862d9c775f5f320c995a4aa1dd51723db | |
parent | 4ab18e0f8e6381f0a16e8b812d4ee202e9465192 (diff) | |
download | riscv-tests-d63a6a4ad0057614d1c838c1b506b6fa0032de01.zip riscv-tests-d63a6a4ad0057614d1c838c1b506b6fa0032de01.tar.gz riscv-tests-d63a6a4ad0057614d1c838c1b506b6fa0032de01.tar.bz2 |
Fix #120: Instructions 'sll' are replaced with 'slli' in rv64ui/slli.S (#121)
-rw-r--r-- | isa/rv64ui/slli.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/isa/rv64ui/slli.S b/isa/rv64ui/slli.S index f28ea1c..b5341ad 100644 --- a/isa/rv64ui/slli.S +++ b/isa/rv64ui/slli.S @@ -36,9 +36,9 @@ RVTEST_CODE_BEGIN TEST_IMM_OP( 16, slli, 0x1090909080000000, 0x0000000021212121, 31 ); #if __riscv_xlen == 64 - TEST_RR_OP( 50, sll, 0x8000000000000000, 0x0000000000000001, 63 ); - TEST_RR_OP( 51, sll, 0xffffff8000000000, 0xffffffffffffffff, 39 ); - TEST_RR_OP( 52, sll, 0x0909080000000000, 0x0000000021212121, 43 ); + TEST_IMM_OP( 50, slli, 0x8000000000000000, 0x0000000000000001, 63 ); + TEST_IMM_OP( 51, slli, 0xffffff8000000000, 0xffffffffffffffff, 39 ); + TEST_IMM_OP( 52, slli, 0x0909080000000000, 0x0000000021212121, 43 ); #endif #------------------------------------------------------------- |