diff options
author | Brett Cannon <brettcannon@users.noreply.github.com> | 2016-08-31 11:59:23 -0700 |
---|---|---|
committer | Andrew Waterman <waterman@eecs.berkeley.edu> | 2016-08-31 11:59:23 -0700 |
commit | 419d983eaf33a202fef760a6ca233fb064867521 (patch) | |
tree | 1332c5cf9128294fdba62c0381a54b47be8cf191 | |
parent | 8c633e9e80d0b3e3764ebc3651e9cc09ab9413c9 (diff) | |
download | riscv-tests-419d983eaf33a202fef760a6ca233fb064867521.zip riscv-tests-419d983eaf33a202fef760a6ca233fb064867521.tar.gz riscv-tests-419d983eaf33a202fef760a6ca233fb064867521.tar.bz2 |
Change accidental use of SLTIU in SLTI tests (#26)
-rw-r--r-- | isa/rv64ui/slti.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isa/rv64ui/slti.S b/isa/rv64ui/slti.S index 00a6c14..9222fa4 100644 --- a/isa/rv64ui/slti.S +++ b/isa/rv64ui/slti.S @@ -41,7 +41,7 @@ RVTEST_CODE_BEGIN # Source/Destination tests #------------------------------------------------------------- - TEST_IMM_SRC1_EQ_DEST( 17, sltiu, 1, 11, 13 ); + TEST_IMM_SRC1_EQ_DEST( 17, slti, 1, 11, 13 ); #------------------------------------------------------------- # Bypassing tests |