1# frv testcase for ori $GRi,$s12,$GRk
2# mach: all
3
4	.include "testutils.inc"
5
6	start
7
8	.global ori
9ori:
10	set_gr_limmed  	0xaaaa,0xaaaa,gr7
11	set_icc         0x07,0		; Set mask opposite of expected
12	ori      	gr7,0x555,gr8
13	test_icc	0 1 1 1 icc0
14	test_gr_limmed 	0xaaaa,0xafff,gr8
15
16	set_gr_immed   	0x00000000,gr7
17	set_icc         0x08,0		; Set mask opposite of expected
18	ori		gr7,0,gr8
19	test_icc	1 0 0 0 icc0
20	test_gr_immed  	0x00000000,gr8
21
22	set_gr_limmed   0xdead,0xb800,gr7
23	set_icc         0x05,0		; Set mask opposite of expected
24	ori		gr7,0x6ef,gr8
25	test_icc	0 1 0 1 icc0
26	test_gr_limmed 	0xdead,0xbeef,gr8
27
28	set_gr_limmed   0xdead,0xb000,gr7
29	set_icc         0x05,0		; Set mask opposite of expected
30	ori		gr7,-273,gr8
31	test_icc	0 1 0 1 icc0
32	test_gr_limmed 	0xffff,0xfeef,gr8
33
34	pass
35