summaryrefslogtreecommitdiff
path: root/gas/testsuite/gasp/mri/exists.out
blob: e75337d51188c5d8ae76aa35aeba110da3c44455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
;exists	macro	arg1,arg2
;	ifne	==arg2
;	move	arg1,arg2
;	elsec
;	push	arg1
;	endc
;	endm
;

;	exists	foo,bar
;	ifne	-1
;	move	foo,bar
	move	foo,bar
;	elsec
;	push	foo
;	endc
;	exists	foo
;	ifne	0
;	move	foo,
;	elsec
;	push	foo
	push	foo
;	endc
;