diff options
author | Andrew Waterman <waterman@cs.berkeley.edu> | 2016-09-06 23:58:57 -0700 |
---|---|---|
committer | Andrew Waterman <waterman@cs.berkeley.edu> | 2016-09-06 23:58:57 -0700 |
commit | d2aeeedd0727804bf3a7d07b5efb4d00b67f0f33 (patch) | |
tree | 111788b4a0ee564afe95fd1b89281ba88fcf3fee /isa/rv64uf/fcvt.S | |
parent | 2c1ebadc2cf7c07824b76694f7cc7ed2b8d9891a (diff) | |
download | riscv-tests-d2aeeedd0727804bf3a7d07b5efb4d00b67f0f33.zip riscv-tests-d2aeeedd0727804bf3a7d07b5efb4d00b67f0f33.tar.gz riscv-tests-d2aeeedd0727804bf3a7d07b5efb4d00b67f0f33.tar.bz2 |
Add rv32uf tests
Diffstat (limited to 'isa/rv64uf/fcvt.S')
-rw-r--r-- | isa/rv64uf/fcvt.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/isa/rv64uf/fcvt.S b/isa/rv64uf/fcvt.S index 7bcb49a..a9a1b59 100644 --- a/isa/rv64uf/fcvt.S +++ b/isa/rv64uf/fcvt.S @@ -23,11 +23,13 @@ RVTEST_CODE_BEGIN TEST_INT_FP_OP_S( 4, fcvt.s.wu, 2.0, 2); TEST_INT_FP_OP_S( 5, fcvt.s.wu, 4.2949673e9, -2); +#ifndef __riscv32 TEST_INT_FP_OP_S( 6, fcvt.s.l, 2.0, 2); TEST_INT_FP_OP_S( 7, fcvt.s.l, -2.0, -2); TEST_INT_FP_OP_S( 8, fcvt.s.lu, 2.0, 2); TEST_INT_FP_OP_S( 9, fcvt.s.lu, 1.8446744e19, -2); +#endif TEST_PASSFAIL |