aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1996-12-28 05:26:04 +0000
committerFred Fish <fnf@specifix.com>1996-12-28 05:26:04 +0000
commit33aeaf0000756a14f19a4dc2c7eaac040b364852 (patch)
treed774aec3fd7f16526a5fdf1d24d1e9b24a95ff0f /include
parent3665f0d5c220956550dc6136331c080f4f9e1bed (diff)
downloadgdb-33aeaf0000756a14f19a4dc2c7eaac040b364852.zip
gdb-33aeaf0000756a14f19a4dc2c7eaac040b364852.tar.gz
gdb-33aeaf0000756a14f19a4dc2c7eaac040b364852.tar.bz2
(Laying some groundwork (that will be incrementally fleshed out) for
TIc80) * dis-asm.h (print_insn_tic80): Declare.
Diffstat (limited to 'include')
-rw-r--r--include/.Sanitize28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/.Sanitize b/include/.Sanitize
index d6be81f..0894d17 100644
--- a/include/.Sanitize
+++ b/include/.Sanitize
@@ -172,6 +172,34 @@ else
done
fi
+tic80_files="ChangeLog dis-asm.h"
+if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
+ for i in $tic80_files ; do
+ if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping tic80 stuff in $i
+ fi
+ fi
+ done
+else
+ for i in $tic80_files ; do
+ if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"tic80\" from $i...
+ fi
+ cp $i new
+ sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/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
+
for i in * ; do
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
echo '***' Some mentions of Sanitize are still left in $i! 1>&2