* configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
[deliverable/binutils-gdb.git] / gas / testsuite / gas / all / forward.s
CommitLineData
9497f5ac
NC
1 .equiv two, 2*one
2 .equiv minus_one, -one
3 .equ one, 1
4 .equiv three, 3*one
5 .eqv four, 4*one
6
7 .data
8
9 .if two > one
10 .byte one
11 .byte two
12 .endif
13
14 .if four > one
15 .byte three
16 .byte four
17 .endif
18
19 .equ one, -1
20 .byte one
21 .byte two
22
23 .if four < one
24 .byte three
25 .byte four
26 .endif
27
28 .equ one, -minus_one
29 .byte one
30 .byte two
31
32 .if four > one
33 .byte three
34 .byte four
35 .endif
36
37 .equ one, minus_one
38 .byte one
39 .byte two
40
41 .if four < one
42 .byte three
43 .byte four
44 .endif
This page took 0.309118 seconds and 4 git commands to generate.