Home | History | Annotate | Download | only in cris
      1 ; Test that an "@" does do TRT in a macro, and does not break up
      2 ; lines.
      3 	.syntax no_register_prefix
      4 	.macro test_h_gr val reg
      5 	cmp.d \val,\reg
      6 	beq test_gr\@
      7 	nop
      8 test_gr\@:
      9 	.endm
     10 
     11 start:
     12         test_h_gr 5,r0
     13         nop
     14