summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/sh64/compact/movl7.cgs
blob: b6c12fc5515fc40c6730ed92771de3cf0888d344 (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 mov.l @$rm+, $rn -*- Asm -*-
# mach: all
# as: -isa=shcompact
# ld: -m shelf32

	.include "compact/testutils.inc"

	start

	mov #30, r0
	shll8 r0
	# Preserve address.
	mov r0, r7
	# Store something first.
	mov #170, r3
	mov.l r3, @r0
	
	mov.l @r0+, r1
check:
	cmp/eq r1, r3
	bf wrong

	# Ensure address is post-incremented.
	add #4, r7
	cmp/eq r7, r0
	bf wrong

equal:	
	# Test rm = rn.
	mov #30, r0
	shll8 r0
	mov.l @r0+, r0

okay:	
	pass
wrong:
	fail