summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/sh64/media/bge.cgs
blob: 832ff06ac21f8fe4a746f63a70e2f4751c1033fb (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
33
34
35
36
37
38
39
40
# sh testcase for bge$likely $rm, $rn, $tra -*- Asm -*-
# mach: all
# as: -isa=shmedia
# ld: -m shelf64

	.include "media/testutils.inc"

	start

	.global bge
init:
	pta bge2, tr0
	pta bge3, tr1
	pta wrong, tr2
	movi 0, r0
	
bge1:
	# Compare r0 with itself.
	bge/l r0, r0, tr0
	# We should branch here.
	fail

bge2:
	movi 1, r1
	movi 1, r2
	bge r1, r2, tr1
	# We should branch here.
	fail

bge3:
	movi -1, r1
	movi 1, r2
	bge r1, r2, tr2
	# We should not branch here.

okay:
	pass

wrong:
	fail