summaryrefslogtreecommitdiffstats
path: root/gas/testsuite/gas/all/forward.s
blob: d51103ce9da23257ce50eaf84df64bde7daae4e6 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
 .equiv two, 2*one
 .equiv minus_one, -one
 .equ one, 1
 .equiv three, 3*one
 .eqv four, 4*one

 .data

 .if two > one
  .byte one
  .byte two
 .endif
	
 .if four > one
  .byte three
  .byte four
 .endif

 .equ one, -1
 .byte one
 .byte two
	
 .if four < one
  .byte three
  .byte four
 .endif

 .equ one, -minus_one
 .byte one
 .byte two
	
 .if four > one
  .byte three
  .byte four
 .endif

 .equ one, minus_one
 .byte one
 .byte two

 .if four < one
  .byte three
  .byte four
 .endif
OpenPOWER on IntegriCloud