From 934f9fa0ff4d46e9a0b66fb1f7993b75d953f23c Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Tue, 18 Jun 1996 23:20:37 +0000 Subject: [PATCH] * dis-asm.h (print_insn_h8300s): Declare. end-sanitize-h8s More H8/S stuff. --- include/.Sanitize | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/include/.Sanitize b/include/.Sanitize index 935e7f1b622..7f68aac00b6 100644 --- a/include/.Sanitize +++ b/include/.Sanitize @@ -85,6 +85,34 @@ else done fi +h8s_files="ChangeLog dis-asm.h" +if ( echo $* | grep keep\-h8s > /dev/null ) ; then + for i in $h8s_files ; do + if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Keeping h8s stuff in $i + fi + fi + done +else + for i in $h8s_files ; do + if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Removing traces of \"h8s\" from $i... + fi + cp $i new + sed '/start\-sanitize\-h8s/,/end-\sanitize\-h8s/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 -- 2.30.2