diff options
author | Gavin Romig-Koch <gavin@redhat.com> | 1997-10-29 21:40:09 +0000 |
---|---|---|
committer | Gavin Romig-Koch <gavin@redhat.com> | 1997-10-29 21:40:09 +0000 |
commit | 4ebda395f1584d6770f2022a81d351e27ea0c8d4 (patch) | |
tree | b39fdbf013f5760ed5deec5bc141b82a6afc3643 /gas/testsuite | |
parent | 6e2ac3c72d3853cfb4a9b5ad80d0589da3994c98 (diff) | |
download | gdb-4ebda395f1584d6770f2022a81d351e27ea0c8d4.zip gdb-4ebda395f1584d6770f2022a81d351e27ea0c8d4.tar.gz gdb-4ebda395f1584d6770f2022a81d351e27ea0c8d4.tar.bz2 |
* config/tc-mips.c (hilo_interlocks): True for tx49.
(md_begin): Add mips64tx49.
(md_parse_option): Add 4900 cpu.
* gas/mips/mips.exp: Add tx49 configury.
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gas/testsuite/gas/mips/.Sanitize | 28 | ||||
-rw-r--r-- | gas/testsuite/gas/mips/mips.exp | 5 |
3 files changed, 39 insertions, 0 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index c15dbed..ac9b75c 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,9 @@ +start-sanitize-tx49 +Wed Oct 29 16:27:30 1997 Gavin Koch <gavin@cygnus.com> + + * gas/mips/mips.exp: Add tx49 configury. + +end-sanitize-tx49 Wed Oct 15 10:40:14 1997 Jeffrey A Law (law@cygnus.com) * gas/ieee-fp/x930509a.s: Tweak slightly to work on the PA. diff --git a/gas/testsuite/gas/mips/.Sanitize b/gas/testsuite/gas/mips/.Sanitize index 22deea6..c7ca303 100644 --- a/gas/testsuite/gas/mips/.Sanitize +++ b/gas/testsuite/gas/mips/.Sanitize @@ -145,4 +145,32 @@ else done fi +tx49_files="mips.exp" +if ( echo $* | grep keep\-tx49 > /dev/null ) ; then + for i in $tx49_files ; do + if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Keeping tx49 stuff in $i + fi + fi + done +else + for i in $tx49_files ; do + if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Removing traces of \"tx49\" from $i... + fi + cp $i new + sed '/start\-sanitize\-tx49/,/end-\sanitize\-tx49/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 + # End of file. diff --git a/gas/testsuite/gas/mips/mips.exp b/gas/testsuite/gas/mips/mips.exp index 2acdc2a..f157f5f 100644 --- a/gas/testsuite/gas/mips/mips.exp +++ b/gas/testsuite/gas/mips/mips.exp @@ -13,6 +13,11 @@ if [istarget mips*-*-*] then { set gpr_ilocks [expr $gpr_ilocks || [istarget mipstx19*-*-*]] # end-sanitize-tx19 + #start-sanitize-tx49 + set ilocks [expr $ilocks || [istarget mips64tx49*-*-*]] + #end-sanitize-tx49 + + run_dump_test "abs" run_dump_test "add" run_dump_test "and" |