Home | History | Annotate | Line # | Download | only in m32r
      1  1.1  christos # m32r testcase for bne $src1,$src2,$disp16
      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 bne
      9  1.1  christos bne:
     10  1.1  christos 	mvi_h_gr r4, 1
     11  1.1  christos 	mvi_h_gr r5, 2
     12  1.1  christos 	bne r4, r5, test0pass
     13  1.1  christos test1fail:
     14  1.1  christos 	fail
     15  1.1  christos 
     16  1.1  christos test0pass:
     17  1.1  christos 	mvi_h_gr r4, 2
     18  1.1  christos 	bne r4, r5, test1fail
     19  1.1  christos 
     20  1.1  christos 	pass
     21