mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-12 06:26:17 +00:00
* include/opcode/mips.h (INSN_4900): Added.
This commit is contained in:
parent
a50b45f379
commit
c7227bdcf7
@ -128,6 +128,35 @@ else
|
||||
done
|
||||
fi
|
||||
|
||||
tx49_files="ChangeLog mips.h"
|
||||
|
||||
if ( echo $* | grep keep\-tx49 > /dev/null ) ; then
|
||||
for i in $tx49_files ; do
|
||||
if test -f $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 -f $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
|
||||
|
||||
r5900_files="ChangeLog mips.h"
|
||||
if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
|
||||
for i in $r5900_files ; do
|
||||
|
@ -1,3 +1,9 @@
|
||||
start-sanitize-tx49
|
||||
Wed Oct 29 17:33:37 1997 Gavin Koch <gavin@cygnus.com>
|
||||
|
||||
* mips.h (INSN_4900): Added.
|
||||
|
||||
end-sanitize-tx49
|
||||
Fri Oct 24 22:36:20 1997 Ken Raeburn <raeburn@cygnus.com>
|
||||
|
||||
* mips.h: Added to comments a quick-ref list of all assigned
|
||||
|
@ -343,6 +343,10 @@ end-sanitize-vr5400
|
||||
/* Toshiba R5900 instruction */
|
||||
#define INSN_5900 0x00000100
|
||||
/* end-sanitize-r5900 */
|
||||
/* start-sanitize-tx49 */
|
||||
#define INSN_4900 0x00000200
|
||||
/* end-sanitize-tx49 */
|
||||
|
||||
|
||||
/* This is a list of macro expanded instructions.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user