* dis-asm.h (arc_get_disassembler): Declare.

Plus remove arc sanitization.
This commit is contained in:
David Edelsohn 1997-08-08 23:47:56 +00:00
parent 1158d8a942
commit 81241e05b7
1 changed files with 0 additions and 28 deletions

View File

@ -61,34 +61,6 @@ Things-to-lose:
Do-last:
arc_files="ChangeLog dis-asm.h"
if ( echo $* | grep keep\-arc > /dev/null ) ; then
for i in $arc_files ; do
if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping arc stuff in $i
fi
fi
done
else
for i in $arc_files ; do
if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"arc\" from $i...
fi
cp $i new
sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/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
v850_files="ChangeLog dis-asm.h"
if ( echo $* | grep keep\-v850 > /dev/null ) ; then
for i in $v850_files ; do