aboutsummaryrefslogtreecommitdiff
path: root/sim/testsuite/mips64r5900-elf/f-min.s
blob: 9663e4849781b5d6a0216944482f5bbc1060b125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.include "t-macros.i"

	start

	loadfp $f1, 1.0
	loadfp $f2, 2.0

test_min1:	
	clearfcsr
	min.s $f3, $f1, $f2
	checkfp 0 $f3 1.0

test_min2:	
	clearfcsr
	min.s $f3, $f2, $f1
	checkfp 0 $f3 1.0

	exit0