aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorGavin Romig-Koch <gavin@redhat.com>1998-01-15 18:46:32 +0000
committerGavin Romig-Koch <gavin@redhat.com>1998-01-15 18:46:32 +0000
commited70a3354d020dce5afb8fa3a87c186d261d3335 (patch)
treec0d8cf4129f6ffdcc87ac8245e5dbe05330bdf43 /gas
parent0d0bb9140bcea4e717366c9f2a3235ed5566d1b8 (diff)
downloadgdb-ed70a3354d020dce5afb8fa3a87c186d261d3335.zip
gdb-ed70a3354d020dce5afb8fa3a87c186d261d3335.tar.gz
gdb-ed70a3354d020dce5afb8fa3a87c186d261d3335.tar.bz2
Initial vr4111 Sanitization marks.
Diffstat (limited to 'gas')
-rw-r--r--gas/.Sanitize28
-rw-r--r--gas/config/.Sanitize28
2 files changed, 56 insertions, 0 deletions
diff --git a/gas/.Sanitize b/gas/.Sanitize
index 641b6d9..5003bcb 100644
--- a/gas/.Sanitize
+++ b/gas/.Sanitize
@@ -403,6 +403,34 @@ else
done
fi
+vr4111_files="ChangeLog"
+if ( echo $* | grep keep\-vr4111 > /dev/null ) ; then
+ for i in $vr4111_files ; do
+ if test ! -d $i && (grep sanitize-vr4111 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping vr4111 stuff in $i
+ fi
+ fi
+ done
+else
+ for i in $vr4111_files ; do
+ if test ! -d $i && (grep sanitize-vr4111 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"vr4111\" from $i...
+ fi
+ cp $i new
+ sed '/start\-sanitize\-vr4111/,/end-\sanitize\-vr4111/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
diff --git a/gas/config/.Sanitize b/gas/config/.Sanitize
index 252691d..49078b5 100644
--- a/gas/config/.Sanitize
+++ b/gas/config/.Sanitize
@@ -412,6 +412,34 @@ else
done
fi
+vr4111_files="tc-mips.c"
+if ( echo $* | grep keep\-vr4111 > /dev/null ) ; then
+ for i in $vr4111_files ; do
+ if test ! -d $i && (grep sanitize-vr4111 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping vr4111 stuff in $i
+ fi
+ fi
+ done
+else
+ for i in $vr4111_files ; do
+ if test -r $i && (grep sanitize-vr4111 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"vr4111\" from $i...
+ fi
+ cp $i new
+ sed '/start\-sanitize\-vr4111/,/end\-sanitize\-vr4111/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