* mips-opc.c: Added tx39 insns sdbbp, rfe, and deret.

* mips16-opc.c: Added mips16 sdbbp.
This commit is contained in:
Gavin Romig-Koch 1997-09-16 14:07:50 +00:00
parent fb1fd47514
commit d9a52316c1
2 changed files with 35 additions and 0 deletions

View file

@ -225,6 +225,34 @@ else
done
fi
tx19_files="ChangeLog mips16-opc.c"
if ( echo $* | grep keep\-tx19 > /dev/null ) ; then
for i in $tx19_files ; do
if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping tx19 stuff in $i
fi
fi
done
else
for i in $tx19_files ; do
if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"tx19\" from $i...
fi
cp $i new
sed '/start\-sanitize\-tx19/,/end-\sanitize\-tx19/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
tic80_files="ChangeLog Makefile.in Makefile.am configure.in configure disassemble.c"
if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
for i in $tic80_files ; do

View file

@ -1,3 +1,10 @@
Tue Sep 16 10:01:00 1997 Gavin Koch <gavin@cygnus.com>
* mips-opc.c: Added tx39 insns sdbbp, rfe, and deret.
start-sanitize-tx19
* mips16-opc.c: Added mips16 sdbbp.
end-sanitize-tx19
Mon Sep 15 18:31:52 1997 Nick Clifton <nickc@cygnus.com>
* v850-opc.c: Initialise processors field of v850_opcode structure.