~angelsl/ubuntu/wily/binutils/mips-cross

« back to all changes in this revision

Viewing changes to gas/testsuite/gas/arm/itblock.s

  • Committer: angelsl
  • Date: 2015-11-03 15:54:40 UTC
  • Revision ID: angelsl-20151103155440-gbh6qo1olzlvaiqs
Import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# All-true IT block macro.
 
2
 
 
3
        .macro itblock num cond=""
 
4
        .if x\cond != x
 
5
        .if \num == 4
 
6
        itttt \cond
 
7
        .else
 
8
        .if \num == 3
 
9
        ittt \cond
 
10
        .else
 
11
        .if \num == 2
 
12
        itt \cond
 
13
        .else
 
14
        .if \num == 1
 
15
        .it \cond
 
16
        .endif
 
17
        .endif
 
18
        .endif
 
19
        .endif
 
20
        .endif
 
21
        .endm