summaryrefslogtreecommitdiffstats
path: root/binutils-2.17/gas/testsuite/gas/all/forward.s
diff options
context:
space:
mode:
Diffstat (limited to 'binutils-2.17/gas/testsuite/gas/all/forward.s')
-rw-r--r--binutils-2.17/gas/testsuite/gas/all/forward.s44
1 files changed, 0 insertions, 44 deletions
diff --git a/binutils-2.17/gas/testsuite/gas/all/forward.s b/binutils-2.17/gas/testsuite/gas/all/forward.s
deleted file mode 100644
index d51103ce..00000000
--- a/binutils-2.17/gas/testsuite/gas/all/forward.s
+++ /dev/null
@@ -1,44 +0,0 @@
- .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