diff options
author | Mohanson <mohanson@outlook.com> | 2020-03-20 01:42:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-19 10:42:19 -0700 |
commit | 08cbae437108ef2e5b61a9c34bdb6ccf50f26bf4 (patch) | |
tree | 0fb1d78cd8d3fc59b05a7e29b442ec4fb910a727 /isa/rv64uf/fmin.S | |
parent | 6c53e59231b3834d98c124e54e3dcef822038b7f (diff) | |
download | riscv-tests-08cbae437108ef2e5b61a9c34bdb6ccf50f26bf4.zip riscv-tests-08cbae437108ef2e5b61a9c34bdb6ccf50f26bf4.tar.gz riscv-tests-08cbae437108ef2e5b61a9c34bdb6ccf50f26bf4.tar.bz2 |
Fix comments error in fmin.S (#267)
Diffstat (limited to 'isa/rv64uf/fmin.S')
-rw-r--r-- | isa/rv64uf/fmin.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/isa/rv64uf/fmin.S b/isa/rv64uf/fmin.S index 8c721aa..1f97533 100644 --- a/isa/rv64uf/fmin.S +++ b/isa/rv64uf/fmin.S @@ -31,9 +31,9 @@ RVTEST_CODE_BEGIN TEST_FP_OP2_S(16, fmax.s, 0, 3.14159265, 3.14159265, 0.00000001 ); TEST_FP_OP2_S(17, fmax.s, 0, -1.0, -1.0, -2.0 ); - # FMIN(sNaN, x) = x + # FMAX(sNaN, x) = x TEST_FP_OP2_S(20, fmax.s, 0x10, 1.0, sNaNf, 1.0); - # FMIN(qNaN, qNaN) = canonical NaN + # FMAX(qNaN, qNaN) = canonical NaN TEST_FP_OP2_S(21, fmax.s, 0x00, qNaNf, NaN, NaN); # -0.0 < +0.0 |