aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2005-12-12 11:25:08 +0000
committerNathan Sidwell <nathan@codesourcery.com>2005-12-12 11:25:08 +0000
commit4970f871a701ce55f5018f31bca1b478448c57ff (patch)
treed05658ebf11988f477603fa7600534c6e280ab9f /gas
parent787121fc405b554f5a48e7879b3d492d231004ae (diff)
downloadgdb-4970f871a701ce55f5018f31bca1b478448c57ff.zip
gdb-4970f871a701ce55f5018f31bca1b478448c57ff.tar.gz
gdb-4970f871a701ce55f5018f31bca1b478448c57ff.tar.bz2
Rename ms1 to mt, part 1
* config.sub: Replace ms1 arch with mt. Allow ms1 as alias. * configure.in: Replace ms1 arch with mt. * configure: Rebuilt. * bfd/Makefile.am (ALL_MACHINES, ALL_MACHINES_CFILES, BFD32_BACKENDS, BFD32_BACKENDS_CFILES): Replace ms1 with mt. (cpu_mt.lo, elf32-mt.lo): Update target and dependency names. * bfd/Makefile.in: Rebuilt. * bfd/config.bfd: Replace ms1 arch with mt. * bfd/configure.in: Replace ms1 files with mt files. * bfd/configure: Rebuilt. * bfd/elf32-mt.c: Renamed from elf32-ms1.c. Update include files. * bfd/cpu-mt.c: Renamed from cpu-ms1.c. * cpu/mt.cpu: Rename from ms1.cpu. * cpu/mt.opc: Rename from ms1.opc. * binutils/Makefile.am: Replace ms1 files with mt files. * binutils/Makefile.in: Rebuilt. * binutils/readelf.c (elf/mt.h): Adjust #include. * gas/configure.in: Replace ms1 arch with mt arch. * gas/configure: Rebuilt. * gas/configure.tgt: Replace ms1 arch with mt arch. * gas/config/tc-mt.c: Renamed from tc-ms1.c: Update include files. * gas/doc/Makefile.am (CPU_DOCS): Replace ms1 files with mt files. * gas/doc/Makefile.in: Rebuilt. * gas/testsuite/gas/mt: Renamed from ms1 dir. Update file names as needed. * gas/testsuite/gas/mt/errors.exp: Replace ms1 arch with mt arch. * gas/testsuite/gas/mt/mt.exp: Replace ms1 arch with mt arch. * gas/testsuite/gas/mt/relocs.exp: Replace ms1 arch with mt arch. * gdb/configure.tgt: Replace ms1 arch with mt arch. * gdb/config/mt: Renamed from ms1 dir. Update file names as needed. * gdb/config/mt/mt.mt (TDEPFILES): Replace ms1 file with mt file. * include/elf/mt.h: Renamed from ms1.h * ld/Makefile.am (ALL_EMULATIONS): Replace ms1 files with mt files. (eelf32mt.c): Update target name and dependencies. * ld/Makefile.in: Rebuilt. * ld/configure.tgt: Replace ms1 arch with mt arch. * ld/emulparams/elf32mt.sh: Renamed from elf32ms1.sh. Update comment. * libgloss/configure.in: Replace ms1 arch with mt arch. * libgloss/configure: Rebuilt. * libgloss/mt: Renamed from ms1 dir. * newlib/configure.host: Replace ms1 arch with mt arch. * newlib/libc/machine/mt: Renamed from ms1 dir. * opcodes/Makefile.am (CLEANFILES, CGEN_CPUS, MT_DEPS): Replace ms1 with mt. * opcodes/Makefile.in: Rebuilt. * opcodes/configure.in: Replace ms1 files with mt files. * opcodes/configure: Rebuilt. * sid/component/cgen-cpu/mt: Renamed from ms1 dir. Update file names as appropriate. * sid/component/cgen-cpu/mt/Makefile.am: Replace ms1 files with mt files. * sid/component/cgen-cpu/mt/Makefile.in: Rebuilt.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog9
-rw-r--r--gas/config/tc-mt.c2
-rwxr-xr-xgas/configure3
-rw-r--r--gas/configure.in3
-rw-r--r--gas/configure.tgt4
-rw-r--r--gas/doc/Makefile.am2
-rw-r--r--gas/doc/Makefile.in2
-rw-r--r--gas/testsuite/ChangeLog7
-rw-r--r--gas/testsuite/gas/mt/errors.exp2
-rw-r--r--gas/testsuite/gas/mt/mt.exp2
-rw-r--r--gas/testsuite/gas/mt/relocs.exp2
11 files changed, 28 insertions, 10 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index d4cd8ba..00d5415 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,12 @@
+2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
+
+ * configure.in: Replace ms1 arch with mt arch.
+ * configure: Rebuilt.
+ * configure.tgt: Replace ms1 arch with mt arch.
+ * config/tc-mt.c: Renamed from tc-ms1.c: Update include files.
+ * doc/Makefile.am (CPU_DOCS): Replace ms1 files with mt files.
+ * doc/Makefile.in: Rebuilt.
+
2005-12-07 Hans-Peter Nilsson <hp@axis.com>
Change 32-bit-branch expansion for --pic.
diff --git a/gas/config/tc-mt.c b/gas/config/tc-mt.c
index 7e2e685..48d272f 100644
--- a/gas/config/tc-mt.c
+++ b/gas/config/tc-mt.c
@@ -27,7 +27,7 @@
#include "opcodes/ms1-opc.h"
#include "cgen.h"
#include "elf/common.h"
-#include "elf/ms1.h"
+#include "elf/mt.h"
#include "libbfd.h"
/* Structure to hold all of the different components
diff --git a/gas/configure b/gas/configure
index 98e4c4a..2a890e6 100755
--- a/gas/configure
+++ b/gas/configure
@@ -4694,7 +4694,7 @@ _ACEOF
fi
;;
- ms1)
+ mt)
using_cgen=yes
;;
@@ -4812,6 +4812,7 @@ esac
cgen_cpu_prefix=""
if test $using_cgen = yes ; then
case ${target_cpu} in
+ mt) cgen_cpu_prefix=ms1 ;;
*) cgen_cpu_prefix=${target_cpu} ;;
esac
diff --git a/gas/configure.in b/gas/configure.in
index 3449a7d..f0baf767 100644
--- a/gas/configure.in
+++ b/gas/configure.in
@@ -321,7 +321,7 @@ changequote([,])dnl
fi
;;
- ms1)
+ mt)
using_cgen=yes
;;
@@ -433,6 +433,7 @@ esac
cgen_cpu_prefix=""
if test $using_cgen = yes ; then
case ${target_cpu} in
+ mt) cgen_cpu_prefix=ms1 ;;
*) cgen_cpu_prefix=${target_cpu} ;;
esac
AC_SUBST(cgen_cpu_prefix)
diff --git a/gas/configure.tgt b/gas/configure.tgt
index ce46561..2ac56c2 100644
--- a/gas/configure.tgt
+++ b/gas/configure.tgt
@@ -53,7 +53,7 @@ case ${cpu} in
maxq) cpu_type=maxq ;;
mips*el) cpu_type=mips endian=little ;;
mips*) cpu_type=mips endian=big ;;
- ms1) cpu_type=ms1 endian=big ;;
+ mt) cpu_type=mt endian=big ;;
or32*) cpu_type=or32 endian=big ;;
pjl*) cpu_type=pj endian=little ;;
pj*) cpu_type=pj endian=big ;;
@@ -278,7 +278,7 @@ case ${generic_target} in
mn10300-*-linux*) fmt=elf em=linux ;;
mn10300-*-*) fmt=elf ;;
- ms1-*-elf) fmt=elf bfd_gas=yes ;;
+ mt-*-elf) fmt=elf bfd_gas=yes ;;
msp430-*-*) fmt=elf ;;
diff --git a/gas/doc/Makefile.am b/gas/doc/Makefile.am
index 4568c25..0db4540 100644
--- a/gas/doc/Makefile.am
+++ b/gas/doc/Makefile.am
@@ -43,7 +43,7 @@ CPU_DOCS = \
c-m68k.texi \
c-mips.texi \
c-mmix.texi \
- c-ms1.texi \
+ c-mt.texi \
c-msp430.texi \
c-ns32k.texi \
c-pdp11.texi \
diff --git a/gas/doc/Makefile.in b/gas/doc/Makefile.in
index 2cc139a..61882d9 100644
--- a/gas/doc/Makefile.in
+++ b/gas/doc/Makefile.in
@@ -234,7 +234,7 @@ CPU_DOCS = \
c-m68k.texi \
c-mips.texi \
c-mmix.texi \
- c-ms1.texi \
+ c-mt.texi \
c-msp430.texi \
c-ns32k.texi \
c-pdp11.texi \
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog
index 11d4489..a5d1124 100644
--- a/gas/testsuite/ChangeLog
+++ b/gas/testsuite/ChangeLog
@@ -1,3 +1,10 @@
+2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
+
+ * gas/mt: Renamed from ms1 dir. Update file names as needed.
+ * gas/mt/errors.exp: Replace ms1 arch with mt arch.
+ * gas/mt/mt.exp: Replace ms1 arch with mt arch.
+ * gas/mt/relocs.exp: Replace ms1 arch with mt arch.
+
2005-12-07 Hans-Peter Nilsson <hp@axis.com>
* gas/cris/rd-bcnst-pic.d, gas/cris/rd-branch-pic.d,
diff --git a/gas/testsuite/gas/mt/errors.exp b/gas/testsuite/gas/mt/errors.exp
index dd47d43..30d217f 100644
--- a/gas/testsuite/gas/mt/errors.exp
+++ b/gas/testsuite/gas/mt/errors.exp
@@ -27,7 +27,7 @@ proc mrisc1_error_test { file testname {warnpattern ""} } {
}
}
-if [istarget ms1-*-*] {
+if [istarget mt-*-*] {
foreach file [glob -nocomplain -- $srcdir/$subdir/bad*.s] {
set file [file tail $file]
switch -- $file {
diff --git a/gas/testsuite/gas/mt/mt.exp b/gas/testsuite/gas/mt/mt.exp
index 1960f0d..9750195 100644
--- a/gas/testsuite/gas/mt/mt.exp
+++ b/gas/testsuite/gas/mt/mt.exp
@@ -1,6 +1,6 @@
# MRISC1 assembler testsuite.
-if [istarget ms1*-*-*] {
+if [istarget mt-*-*] {
#
run_dump_test "allinsn"
run_dump_test "misc"
diff --git a/gas/testsuite/gas/mt/relocs.exp b/gas/testsuite/gas/mt/relocs.exp
index 41c84e2..076f428 100644
--- a/gas/testsuite/gas/mt/relocs.exp
+++ b/gas/testsuite/gas/mt/relocs.exp
@@ -20,7 +20,7 @@ proc regexp_test { file1 file2 test } {
global srcdir subdir
-if [istarget ms1-*] {
+if [istarget mt-*] {
gas_test "relocs1.s" {-o relocs1.o} {} {assembling relocs1}
# gas_test "relocs2.s" {-o relocs2.o} {} {assembling relocs2}