]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/testsuite/mips64r5900-elf/f-sqrt.s
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / sim / testsuite / mips64r5900-elf / f-sqrt.s
1 .include "t-macros.i"
2
3 start
4
5 test_sqrt_4_0:
6 clearfcsr
7 loadfp $f1 4.0
8 sqrt.s $f2, $f1
9 checkfp 0 $f2 2.0
10
11 test_sqrt_0_01:
12 clearfcsr
13 loadfp $f1 0.01
14 sqrt.s $f2, $f1
15 checkfp 0 $f2 0.1
16
17 test_sqrt_minus_4_0:
18 clearfcsr
19 loadfp $f1 4.0
20 neg.s $f1, $f1
21 sqrt.s $f2, $f1
22 checkfp FCSR_I $f2 2.0
23
24 exit0