aboutsummaryrefslogtreecommitdiff
path: root/gdb/.Sanitize
diff options
context:
space:
mode:
authorGavin Romig-Koch <gavin@redhat.com>1997-10-29 22:38:20 +0000
committerGavin Romig-Koch <gavin@redhat.com>1997-10-29 22:38:20 +0000
commita50b45f379052d0456a7f61be16a7ac1e1fb2b4c (patch)
tree2d1f4a6c5676c86c986dc7963ef65db291d5a93c /gdb/.Sanitize
parentda3636f7620ef29af25e8cf5e701bbca8d7f1c76 (diff)
downloadgdb-a50b45f379052d0456a7f61be16a7ac1e1fb2b4c.zip
gdb-a50b45f379052d0456a7f61be16a7ac1e1fb2b4c.tar.gz
gdb-a50b45f379052d0456a7f61be16a7ac1e1fb2b4c.tar.bz2
* include/opcode/mips.h (INSN_4900): Added.
Diffstat (limited to 'gdb/.Sanitize')
-rw-r--r--gdb/.Sanitize27
1 files changed, 27 insertions, 0 deletions
diff --git a/gdb/.Sanitize b/gdb/.Sanitize
index cc33837..fe5edc0 100644
--- a/gdb/.Sanitize
+++ b/gdb/.Sanitize
@@ -600,6 +600,33 @@ else
done
fi
+if ( echo $* | grep keep\-tx49 > /dev/null ) ; then
+ for i in * ; 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 * ; 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
+
if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then