* mips.h (INSN_4320) : Added.

This commit is contained in:
Gavin Romig-Koch 1998-03-03 16:48:34 +00:00
parent 2d035a507f
commit 49e122ae8d
2 changed files with 36 additions and 1 deletions

View file

@ -1,4 +1,4 @@
# .Sanitize for devo/include/opcode.
# .Sanitize for devo/include/opcode.
# Each directory to survive it's way into a release will need a file
# like this one called "./.Sanitize". All keyword lines must exist,
@ -307,6 +307,35 @@ else
fi
vr4320_files="ChangeLog mips.h"
if ( echo $* | grep keep\-vr4320 > /dev/null ) ; then
for i in $vr4320_files ; do
if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping vr4320 stuff in $i
fi
fi
done
else
for i in $vr4320_files ; do
if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"vr4320\" from $i...
fi
cp $i new
sed '/start\-sanitize\-vr4320/,/end-\sanitize\-vr4320/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

View file

@ -1,3 +1,9 @@
start-sanitize-vr4320
Tue Mar 3 11:45:09 1998 Gavin Koch <gavin@cygnus.com>
* mips.h (INSN_4320) : Added.
end-sanitize-vr4320
Mon Mar 2 10:44:07 1998 Doug Evans <devans@seba.cygnus.com>
* cgen.h (CGEN_BOOL_ATTR): New macro.