diff options
author | Nick Clifton <nickc@redhat.com> | 2008-03-18 16:56:00 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2008-03-18 16:56:00 +0000 |
commit | 188e2ff3a5ded6200f709798d66421fc7535447d (patch) | |
tree | 36fbcb3afb75e63a977bdf4a528a58fd92377087 | |
parent | 41711e010b13caca61d333fa7a3f8f867dd04d75 (diff) | |
download | fsf-binutils-gdb-188e2ff3a5ded6200f709798d66421fc7535447d.zip fsf-binutils-gdb-188e2ff3a5ded6200f709798d66421fc7535447d.tar.gz fsf-binutils-gdb-188e2ff3a5ded6200f709798d66421fc7535447d.tar.bz2 |
* gas/macros/test1.s: Rename symbols to avoid conflicts with
possible register names.
* gas/macros/test1.d: Update expected disassembly.
-rw-r--r-- | gas/testsuite/gas/macros/test1.d | 4 | ||||
-rw-r--r-- | gas/testsuite/gas/macros/test1.s | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gas/testsuite/gas/macros/test1.d b/gas/testsuite/gas/macros/test1.d index d84b3fb..f6d7fa4 100644 --- a/gas/testsuite/gas/macros/test1.d +++ b/gas/testsuite/gas/macros/test1.d @@ -1,5 +1,5 @@ #nm: --extern-only #name: macro test 1 -0+01 A s1 -0+02 A s2 +0+01 A s_not_a_reg_1 +0+02 A s_not_a_reg_2 diff --git a/gas/testsuite/gas/macros/test1.s b/gas/testsuite/gas/macros/test1.s index 988b7cd..b899a2d 100644 --- a/gas/testsuite/gas/macros/test1.s +++ b/gas/testsuite/gas/macros/test1.s @@ -3,5 +3,5 @@ \arg1 = \arg2 .endm - m s1,1 - m s2,2 + m s_not_a_reg_1,1 + m s_not_a_reg_2,2 |