diff options
author | Nick Clifton <nickc@redhat.com> | 2002-08-22 17:27:20 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-08-22 17:27:20 +0000 |
commit | ed71e1110daa51fb1e40bf98ab7b27768be6a123 (patch) | |
tree | 16d35c46d831e6f5422d2dbf52cea1670a5d6f25 /gas | |
parent | dfe0d3fe28b8e6f9e8a43c9aabc09db723b52fc8 (diff) | |
download | fsf-binutils-gdb-ed71e1110daa51fb1e40bf98ab7b27768be6a123.zip fsf-binutils-gdb-ed71e1110daa51fb1e40bf98ab7b27768be6a123.tar.gz fsf-binutils-gdb-ed71e1110daa51fb1e40bf98ab7b27768be6a123.tar.bz2 |
Add sh-nto support
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 5 | ||||
-rwxr-xr-x | gas/configure | 4 | ||||
-rw-r--r-- | gas/configure.in | 4 |
4 files changed, 11 insertions, 7 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 861ca06..93f62cd 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2002-08-12 Graeme Peterson <gp@qnx.com> + + * configure.in: Add support for sh-**-nto* target. + * configure: Regenerate. + 2002-08-21 Nitin Gupta <niting@noida.hcltech.com> * config/tc-h8300.h (TC_LINKRELAX_FIXUP): Define. diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 7085a2f..d2d7034 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -2228,7 +2228,7 @@ add_to_lit_pool () { if (entry >= MAX_LITERAL_POOL_SIZE) { - inst.error = _("Literal Pool Overflow"); + inst.error = _("literal pool overflow"); return FAIL; } @@ -10265,7 +10265,7 @@ tc_gen_reloc (section, fixp) /* If this is called then the a literal has been referenced across a section boundary. */ as_bad_where (fixp->fx_file, fixp->fx_line, - _("Literal referenced across section boundary")); + _("literal referenced across section boundary")); return NULL; #ifdef OBJ_ELF @@ -10512,7 +10512,6 @@ md_assemble (str) -k Generate PIC code -mthumb Start in Thumb mode -mthumb-interwork Code supports ARM/Thumb interworking - -mimplicit-litpool-dump Dump literal pool on section change For now we will also provide support for: diff --git a/gas/configure b/gas/configure index 7348927..aa0f453 100755 --- a/gas/configure +++ b/gas/configure @@ -2581,8 +2581,8 @@ EOF sh*-*-netbsdelf*) fmt=elf em=nbsd ;; sh-*-elf*) fmt=elf ;; sh-*-coff*) fmt=coff ;; - sh-*-pe*) fmt=coff em=pe bfd_gas=yes - endian=little ;; + sh-*-nto*) fmt=elf ;; + sh-*-pe*) fmt=coff em=pe bfd_gas=yes endian=little ;; sh-*-rtemself*) fmt=elf ;; sh-*-rtems*) fmt=coff ;; sh64-*-elf*) fmt=elf ;; diff --git a/gas/configure.in b/gas/configure.in index a0fc678..7e7016d 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -425,8 +425,8 @@ changequote([,])dnl sh*-*-netbsdelf*) fmt=elf em=nbsd ;; sh-*-elf*) fmt=elf ;; sh-*-coff*) fmt=coff ;; - sh-*-pe*) fmt=coff em=pe bfd_gas=yes - endian=little ;; + sh-*-nto*) fmt=elf ;; + sh-*-pe*) fmt=coff em=pe bfd_gas=yes endian=little ;; sh-*-rtemself*) fmt=elf ;; sh-*-rtems*) fmt=coff ;; sh64-*-elf*) fmt=elf ;; |