diff options
author | Jan Beulich <jbeulich@novell.com> | 2005-05-18 06:12:08 +0000 |
---|---|---|
committer | Jan Beulich <jbeulich@novell.com> | 2005-05-18 06:12:08 +0000 |
commit | 0445d0204755ef32de81e2e18af357cb4e629c8d (patch) | |
tree | acc323de1bb3ad08cdc0e1c7bb6b20042e175aa3 /gas | |
parent | c19d120533277585363d82db26dec8f9ff603d0f (diff) | |
download | gdb-0445d0204755ef32de81e2e18af357cb4e629c8d.zip gdb-0445d0204755ef32de81e2e18af357cb4e629c8d.tar.gz gdb-0445d0204755ef32de81e2e18af357cb4e629c8d.tar.bz2 |
gas/testsuite/
2005-05-18 Jan Beulich <jbeulich@novell.com>
* gas/all/altmacro.s: Parenthesize operand of %.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gas/testsuite/gas/all/altmacro.s | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 552458b..3ea7e20 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-05-18 Jan Beulich <jbeulich@novell.com> + + * gas/all/altmacro.s: Parenthesize operand of %. + 2005-05-17 Zack Weinberg <zack@codesourcery.com> * gas/arm/arm.exp: Convert all existing "gas_test" tests to diff --git a/gas/testsuite/gas/all/altmacro.s b/gas/testsuite/gas/all/altmacro.s index b989133..a681981 100644 --- a/gas/testsuite/gas/all/altmacro.s +++ b/gas/testsuite/gas/all/altmacro.s @@ -7,7 +7,7 @@ l2: .byte v2 .endm .macro m2 v1, v2 - m1 %v1, %(v2-v1) + m1 %(v1), %(v2-v1) .endm .macro m3 str |