mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 04:00:07 +08:00
* mips-opc.c: Added tx39 insns sdbbp, rfe, and deret.
* mips16-opc.c: Added mips16 sdbbp.
This commit is contained in:
@ -225,6 +225,34 @@ else
|
|||||||
done
|
done
|
||||||
fi
|
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"
|
tic80_files="ChangeLog Makefile.in Makefile.am configure.in configure disassemble.c"
|
||||||
if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
|
if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
|
||||||
for i in $tic80_files ; do
|
for i in $tic80_files ; do
|
||||||
|
@ -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>
|
Mon Sep 15 18:31:52 1997 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
* v850-opc.c: Initialise processors field of v850_opcode structure.
|
* v850-opc.c: Initialise processors field of v850_opcode structure.
|
||||||
|
Reference in New Issue
Block a user