summaryrefslogtreecommitdiff
path: root/gas/testsuite/gas/cris/macroat.s
blob: 795f8a30857632ea952219dbdb345af156a66a1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; Test that an "@" does do TRT in a macro, and does not break up
; lines.
	.macro test_h_gr val reg
	cmp.d \val,\reg
	beq test_gr\@
	nop
test_gr\@:
	.endm

start:
        test_h_gr 5,r0
        nop