summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/sh64/media/shori.cgs
blob: 5f02b7d2c5f2bb384259b535a99e307c9b120359 (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
# sh testcase for shori $imm16, $rd -*- Asm -*-
# mach: all
# as: -isa=shmedia
# ld: -m shelf64

	.include "media/testutils.inc"

	start

init:
	pta wrong, tr0

shori1:
	movi 1, r0
	shori 7, r0
	# check it.
	andi r0, 15, r7
	bnei r7, 7, tr0
	shlri r0, 16, r0
	bnei r0, 1, tr0

shori2:
	# Test for zero extension bug reported by
	# Alexandre Oliva <aoliva@redhat.com>.
	movi 0, r0
	shori 65535, r0
	# check it.
	movi 0xffff, r1
	bne r0, r1, tr0

okay:
	pass

wrong:
	fail