Skip to content

Commit 5ec687b

Browse files
authored
Fix duplicate mulh test case in rv32m tests (#630)
1 parent 59554a6 commit 5ec687b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

isa/rv32um/mulh.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RVTEST_CODE_BEGIN
2323

2424
TEST_RR_OP( 5, mulh, 0x00000000, 0x00000000, 0xffff8000 );
2525
TEST_RR_OP( 6, mulh, 0x00000000, 0x80000000, 0x00000000 );
26-
TEST_RR_OP( 7, mulh, 0x00000000, 0x80000000, 0x00000000 );
26+
TEST_RR_OP( 7, mulh, 0x00004000, 0x80000000, 0xffff8000 );
2727

2828
TEST_RR_OP(30, mulh, 0xffff0081, 0xaaaaaaab, 0x0002fe7d );
2929
TEST_RR_OP(31, mulh, 0xffff0081, 0x0002fe7d, 0xaaaaaaab );

0 commit comments

Comments
 (0)