summaryrefslogtreecommitdiffstats
path: root/binutils-2.17/gas/testsuite/gas/arm/req.s
diff options
context:
space:
mode:
Diffstat (limited to 'binutils-2.17/gas/testsuite/gas/arm/req.s')
-rw-r--r--binutils-2.17/gas/testsuite/gas/arm/req.s25
1 files changed, 0 insertions, 25 deletions
diff --git a/binutils-2.17/gas/testsuite/gas/arm/req.s b/binutils-2.17/gas/testsuite/gas/arm/req.s
deleted file mode 100644
index 341f66d1..00000000
--- a/binutils-2.17/gas/testsuite/gas/arm/req.s
+++ /dev/null
@@ -1,25 +0,0 @@
- .text
- .global test_dot_req_and_unreq
-test_dot_req_and_unreq:
-
- # Check that builtin register alias 'r0' works.
- add r0, r0, r0
-
- # Create an alias for r0.
- foo .req r0
-
- # Check that it works.
- add foo, foo, foo
-
- # Now remove the alias.
- .unreq foo
-
- # And make sure that it no longer works.
- add foo, foo, foo
-
- # Attempt to remove the builtin alias for r0.
- .unreq r0
-
- # That is ignored, so this should still work.
- add r0, r0, r0
-