diff options
author | Kaz Kojima <kkojima@rr.iij4u.or.jp> | 2009-09-08 12:31:32 +0000 |
---|---|---|
committer | Kaz Kojima <kkojima@rr.iij4u.or.jp> | 2009-09-08 12:31:32 +0000 |
commit | 7e127222000a836f4a46e9cd2ef6ae156dcbc133 (patch) | |
tree | 63909d93ff6fdac6528c85aac04f936f207d742e /gas | |
parent | 6a200c2ed0052ef012111dc04c4292031ff2a044 (diff) | |
download | gdb-7e127222000a836f4a46e9cd2ef6ae156dcbc133.zip gdb-7e127222000a836f4a46e9cd2ef6ae156dcbc133.tar.gz gdb-7e127222000a836f4a46e9cd2ef6ae156dcbc133.tar.bz2 |
* configure.tgt (sh*-*-netbsdelf*): Set endian according to cpu.
* gas/sh/basic.exp: Add -big to ASFLAGS for sh*l*-*-netbsdelf*.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/configure.tgt | 6 | ||||
-rw-r--r-- | gas/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gas/testsuite/gas/sh/basic.exp | 2 |
4 files changed, 14 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index d9c2113..b76df64 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2009-09-08 Kaz Kojima <kkojima@rr.iij4u.or.jp> + + * configure.tgt (sh*-*-netbsdelf*): Set endian according to cpu. + 2009-09-08 Alan Modra <amodra@bigpond.net.au> * read.c (emit_expr_fix): Handle size 3. diff --git a/gas/configure.tgt b/gas/configure.tgt index 777f798..054f2b8 100644 --- a/gas/configure.tgt +++ b/gas/configure.tgt @@ -353,7 +353,11 @@ case ${generic_target} in esac ;; sh5*-*-netbsd*) fmt=elf em=nbsd ;; sh64*-*-netbsd*) fmt=elf em=nbsd ;; - sh*-*-netbsdelf*) fmt=elf em=nbsd ;; + sh*-*-netbsdelf*) fmt=elf em=nbsd + case ${cpu} in + sh*l*) endian=little ;; + *) endian=big ;; + esac ;; sh*-*-symbianelf*) fmt=elf endian=little ;; sh-*-elf* | sh-*-uclinux* | sh[12]-*-uclinux*) fmt=elf ;; sh-*-coff*) fmt=coff ;; diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 1ff9c46..ac752bc 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2009-09-08 Kaz Kojima <kkojima@rr.iij4u.or.jp> + + * gas/sh/basic.exp: Add -big to ASFLAGS for sh*l*-*-netbsdelf*. + 2009-09-08 Alan Modra <amodra@bigpond.net.au> * gas/d30v/serial2.l: Adjust position of page break. diff --git a/gas/testsuite/gas/sh/basic.exp b/gas/testsuite/gas/sh/basic.exp index aa89d81..3bb7931 100644 --- a/gas/testsuite/gas/sh/basic.exp +++ b/gas/testsuite/gas/sh/basic.exp @@ -20,7 +20,7 @@ # Written by Cygnus Support. -if [istarget "sh*-*-linux-*"] { +if {[istarget "sh*-*-linux-*"] || [istarget "sh*l*-*-netbsdelf*"]} then { global ASFLAGS set ASFLAGS "$ASFLAGS -big" } |