diff options
author | Nick Clifton <nickc@redhat.com> | 2004-07-27 11:37:12 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2004-07-27 11:37:12 +0000 |
commit | 670ec21de99faddc3a86f9e18fb9ef1a093b3dbf (patch) | |
tree | d809163639cab84dd83ef7b8229321767c541388 /gas/testsuite | |
parent | 575eebb19f60c85a0e4973dfa9e2f8b1a197005a (diff) | |
download | gdb-670ec21de99faddc3a86f9e18fb9ef1a093b3dbf.zip gdb-670ec21de99faddc3a86f9e18fb9ef1a093b3dbf.tar.gz gdb-670ec21de99faddc3a86f9e18fb9ef1a093b3dbf.tar.bz2 |
Add CRX insns: pushx, popx
Add support to GAS for expressions which are the difference of two symbols
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gas/testsuite/gas/all/gas.exp | 3 | ||||
-rw-r--r-- | gas/testsuite/gas/macros/strings.s | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 77428e4..13815bb 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-07-27 Tomer Levi <Tomer.Levi@nsc.com> + + * gas/all/gas.exp (do_930509a): Disable test for crx. + 2004-07-22 H.J. Lu <hongjiu.lu@intel.com> * gas/i386/x86-64-inval.l: Remove the leading `+'. diff --git a/gas/testsuite/gas/all/gas.exp b/gas/testsuite/gas/all/gas.exp index 31cfa4e..df8d71d 100644 --- a/gas/testsuite/gas/all/gas.exp +++ b/gas/testsuite/gas/all/gas.exp @@ -85,12 +85,13 @@ proc do_930509a {} { if !$x then { fail $testname } } -# This test is meaningless for the PA; the difference of two symbols +# This test is meaningless for the PA and CRX; the difference of two symbols # must not be resolved by the assembler. # C54x assembler (for compatibility) does not allow differences between # forward references # C30 counts a four byte offset as a difference of one. if { ![istarget hppa*-*-*] && + ![istarget crx*-*-*] && ![istarget *c30*-*-*] && ![istarget *c4x*-*-*] && ![istarget *c54x*-*-*] } then { diff --git a/gas/testsuite/gas/macros/strings.s b/gas/testsuite/gas/macros/strings.s index 291a0dc..9e98c85 100644 --- a/gas/testsuite/gas/macros/strings.s +++ b/gas/testsuite/gas/macros/strings.s @@ -1,3 +1,4 @@ +#NO_APP .macro M arg1 .ascii "\arg1" .endm |