mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 02:24:17 +08:00
* h8300-dis.c (bfd_h8_disassemble): Rename "hmode" argument
to just "mode". start-sanitize-h8s * disassemble.c (disassembler): Handle H8/S. * h8300-dis.c (print_insn_h8300s): New function for H8/S. end-sanitize-h8s Even more H8/S goo.
This commit is contained in:
@ -105,6 +105,34 @@ else
|
|||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
h8s_files="ChangeLog disassemble.c h8300-dis.c"
|
||||||
|
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
|
for i in * ; do
|
||||||
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
|
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
|
||||||
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
|
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
Tue Jun 18 15:58:27 1996 Jeffrey A. Law <law@rtl.cygnus.com>
|
||||||
|
|
||||||
|
* h8300-dis.c (bfd_h8_disassemble): Rename "hmode" argument
|
||||||
|
to just "mode".
|
||||||
|
|
||||||
|
start-sanitize-h8s
|
||||||
|
* disassemble.c (disassembler): Handle H8/S.
|
||||||
|
* h8300-dis.c (print_insn_h8300s): New function for H8/S.
|
||||||
|
end-sanitize-h8s
|
||||||
Tue Jun 18 18:06:50 1996 Ian Lance Taylor <ian@cygnus.com>
|
Tue Jun 18 18:06:50 1996 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
* ppc-opc.c: Fix fcmpo opcode. From Sergei Steshenko
|
* ppc-opc.c: Fix fcmpo opcode. From Sergei Steshenko
|
||||||
|
Reference in New Issue
Block a user