summaryrefslogtreecommitdiffstats
path: root/gas/testsuite/gas/all/eval.s
blob: 14efe94c7fe4a23e1b68e67e9b90b3fe2b163dc4 (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
45
46
47
48
.equ zero, 0
.equ one, 1
.equ two, 2


 .data

 .if two > one
   .byte one
 .else
   .byte two
 .endif

 .if one == one
   .byte one
  .else
    .byte two
  .endif

  .if one < two
    .byte one
  .else
    .byte two
  .endif

  .if one <> two
    .byte one
  .else
    .byte two
  .endif

  .if one != two
    .byte one
  .else
    .byte two
  .endif

  .if one <= two
    .byte one
  .else
    .byte two
  .endif

  .if two >= one
    .byte one
  .else
    .byte two
  .endif
OpenPOWER on IntegriCloud