diff options
author | Nick Clifton <nickc@redhat.com> | 2003-12-03 15:07:17 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-12-03 15:07:17 +0000 |
commit | f8fc3443814cb6f315680a7fb34ff4effc86442e (patch) | |
tree | 135f9d61931a73f10996ca0efded95554e4f48be /gas/testsuite | |
parent | a46a5b58510c6f92d2296867dfe6fd68871b17b3 (diff) | |
download | gdb-f8fc3443814cb6f315680a7fb34ff4effc86442e.zip gdb-f8fc3443814cb6f315680a7fb34ff4effc86442e.tar.gz gdb-f8fc3443814cb6f315680a7fb34ff4effc86442e.tar.bz2 |
Add vax-linux-gnu target
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gas/testsuite/gas/vax/vax.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 1f86d49..d3de7c4 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2003-12-03 Nick Clifton <nickc@redhat.com> + + * gas/vax/vax.exp (do_quad): Treat a vax-*-linux-gnu target as an + ELF target. + 2003-12-01 Kaz Kojima <kkojima@rr.iij4u.or.jp> * gas/sh/basic.exp: Define ASFLAGS appropriately and don't do diff --git a/gas/testsuite/gas/vax/vax.exp b/gas/testsuite/gas/vax/vax.exp index 061036c..f61906c 100644 --- a/gas/testsuite/gas/vax/vax.exp +++ b/gas/testsuite/gas/vax/vax.exp @@ -8,7 +8,7 @@ proc do_quad {} { set x2 0 set x3 0 set file "quad.s" - if [istarget vax-*-*elf*] { + if { [istarget vax-*-*elf*] || [istarget vax-*-linux-gnu*] } then { set file "quad_elf.s" } gas_start $file "-al" |