diff options
author | Gavin Romig-Koch <gavin@redhat.com> | 1998-11-25 01:10:52 +0000 |
---|---|---|
committer | Gavin Romig-Koch <gavin@redhat.com> | 1998-11-25 01:10:52 +0000 |
commit | f8c41900fc052ca8aa12ba1c429b945d58b48753 (patch) | |
tree | 054ab825aa8f1268c7dec61ec021fb6a889fc133 /gas | |
parent | cb4ec686970291b68dd1b289eba7c82904e31d39 (diff) | |
download | fsf-binutils-gdb-f8c41900fc052ca8aa12ba1c429b945d58b48753.zip fsf-binutils-gdb-f8c41900fc052ca8aa12ba1c429b945d58b48753.tar.gz fsf-binutils-gdb-f8c41900fc052ca8aa12ba1c429b945d58b48753.tar.bz2 |
For top level:
* config.sub (mips64vr4xxx,mips64vr4xxxel): New.
For gcc:
* config.sub (mips64vr4xxx,mips64vr4xxxel): New.
* configure.in (mips64vr4xxx,mips64vr4xxxel): New.
* config/mips/t-vr4xxx: New.
* config/mips/elfb4xxx.h: New.
* config/mips/elfl4xxx.h: New.
* configure: Rebuilt.
For gas:
* config/tc-mips.c (md_begin): Added mip64vr4xxx as a
possible CPU_TARGET.
For gdb:
* configure.tgt: Handle mips64*vr4xxx.
For ld:
* configure.tgt: Handle mips64*vr4xxx.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 14 | ||||
-rw-r--r-- | gas/config/.Sanitize | 28 |
2 files changed, 42 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index ccbb5de..5bdaf6e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,17 @@ +start-sanitize-vr4xxx +1998-11-24 Gavin Romig-Koch <gavin@cygnus.com> + + * config/tc-mips.c (md_begin): Added mip64vr4xxx as a + possible CPU_TARGET. + +end-sanitize-vr4xxx +Tue Nov 24 14:54:38 1998 Nick Clifton <nickc@cygnus.com> + + * config/tc-d10v.c (md_assemble): Make static 'etype' have file + scope. + (d10v_cleanup): Only generate previous insn if a multiline insn is + not pending. + start-sanitize-fr30 Fri Nov 20 11:41:13 1998 Nick Clifton <nickc@cygnus.com> diff --git a/gas/config/.Sanitize b/gas/config/.Sanitize index 5654849..feb7d89 100644 --- a/gas/config/.Sanitize +++ b/gas/config/.Sanitize @@ -434,6 +434,34 @@ else done fi +vr4xxx_files="tc-mips.c" +if ( echo $* | grep keep\-vr4xxx > /dev/null ) ; then + for i in $vr4xxx_files ; do + if test ! -d $i && (grep sanitize-vr4xxx $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Keeping vr4xxx stuff in $i + fi + fi + done +else + for i in $vr4xxx_files ; do + if test -r $i && (grep sanitize-vr4xxx $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Removing traces of \"vr4xxx\" from $i... + fi + cp $i new + sed '/start\-sanitize\-vr4xxx/,/end\-sanitize\-vr4xxx/d' < $i > new + if [ -n "${safe}" -a ! -f .Recover/$i ] ; then + if [ -n "${verbose}" ] ; then + echo Caching $i in .Recover... + fi + mv $i .Recover + fi + mv new $i + fi + done +fi + vr4320_files="tc-mips.c" if ( echo $* | grep keep\-vr4320 > /dev/null ) ; then for i in $vr4320_files ; do |