summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/sh64/compact/cmppl.cgs
blob: 1c11377f34beee629297dbbc0adbd068590f0741 (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
# sh testcase for cmp/pl $rn -*- Asm -*-
# mach: all
# as: -isa=shcompact
# ld: -m shelf32

	.include "compact/testutils.inc"

	start

zero:
	mov #0, r0
	cmp/pl r0
	bt wrong

plus:
	mov #10, r0
	cmp/pl r0
	bf wrong

minus:
	mov #10, r0
	neg r0, r0
	cmp/pl r0
	bt wrong

large:
	mov #10, r0
	shll8 r0
	add #123, r0
	cmp/pl r0
	bf wrong

okay:
	pass

wrong:
	fail