aboutsummaryrefslogtreecommitdiff
path: root/sim/testsuite/v850eq-elf/t-cmov.s
blob: 9c5ab4c8a7528ed01f8abaf017b030a4682a8170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.include "t-macros.i"

	start

	load r2 2
	load r3 3

	load r4 4
	cmp r2, r3
test_cmov1:
	cmov ne, r2, r3, r4
	check1x 1 r4 2

	load r4 4
	cmp r2, r3
test_cmov2:
	cmov ne, 2, r3, r4
	check1x 2 r4 2

	load r4 4
	cmp r2, r3
test_cmov3:
	cmov e, r2, r3, r4
	check1x 3 r4 3

	load r4 4
	cmp r2, r3
test_cmov4:
	cmov e, 2, r3, r4
	check1x 4 r4 3

	exit0