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