Home | History | Annotate | Line # | Download | only in m32r
      1  1.1  christos # m32r testcase for subx $dr,$sr
      2  1.1  christos # mach(): m32r m32rx
      3  1.1  christos 
      4  1.1  christos 	.include "testutils.inc"
      5  1.1  christos 
      6  1.1  christos 	start
      7  1.1  christos 
      8  1.1  christos 	.global subx
      9  1.1  christos subx:
     10  1.1  christos 	mvi_h_condbit 1
     11  1.1  christos 	mvi_h_gr r4, 6
     12  1.1  christos 	mvi_h_gr r5, 4
     13  1.1  christos 	subx r4, r5
     14  1.1  christos 	bc not_ok
     15  1.1  christos 	test_h_gr r4, 1
     16  1.1  christos 
     17  1.1  christos 	mvi_h_condbit 1
     18  1.1  christos 	mvi_h_gr r4, 4
     19  1.1  christos 	mvi_h_gr r5, 4
     20  1.1  christos 	subx r4, r5
     21  1.1  christos 	bnc not_ok
     22  1.1  christos 	test_h_gr r4, 0xffffffff
     23  1.1  christos 
     24  1.1  christos 	pass
     25  1.1  christos not_ok:
     26  1.1  christos 	fail
     27