aboutsummaryrefslogtreecommitdiff
path: root/opcodes/.Sanitize
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1995-08-07 08:39:42 +0000
committerJeff Law <law@redhat.com>1995-08-07 08:39:42 +0000
commit1ca31557f59ac1af1b3275086323d5cfba93feef (patch)
tree298ecd78f2c38e8d5a55448578793a24b8e77404 /opcodes/.Sanitize
parentdb186b3db73d66a2abe4f428e69c5aa8f366db68 (diff)
downloadgdb-1ca31557f59ac1af1b3275086323d5cfba93feef.zip
gdb-1ca31557f59ac1af1b3275086323d5cfba93feef.tar.gz
gdb-1ca31557f59ac1af1b3275086323d5cfba93feef.tar.bz2
* sh-dis.c (print_insn_shx): Handle new operand types F_REG_N,
F_REG_M, FPSCR_M, FPSCR_N, FPUL_M and FPUL_N. * sh-opc.h (sh_arg_type): Add new operand types. (sh_table): Add new opcodes from SH3E Floating Point ISA. sh3e stuff. Sanitized out for now.
Diffstat (limited to 'opcodes/.Sanitize')
-rw-r--r--opcodes/.Sanitize21
1 files changed, 21 insertions, 0 deletions
diff --git a/opcodes/.Sanitize b/opcodes/.Sanitize
index a94b67b..a513ce6 100644
--- a/opcodes/.Sanitize
+++ b/opcodes/.Sanitize
@@ -104,6 +104,27 @@ else
done
fi
+sh3e_files="ChangeLog sh-dis.c sh-opc.h"
+if ( echo $* | grep keep\-sh3e > /dev/null ) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping sh3e stuff in $sh3e_files.
+ fi
+else
+ if [ -n "${verbose}" ]; then
+ echo -n Cleaning sh3e in `pwd`:
+ fi
+ for f in $sh3e_files ; do
+ if [ -n "${verbose}" ] ; then
+ echo -n " " $f
+ fi
+ sed -e '/start\-sanitize\-sh3e/,/end\-sanitize\-sh3e/d' -e '/ xl /d' < $f > new
+ if [ -n "${safe}" ] ; then
+ mv $f .Recover
+ fi
+ mv new $f
+ done
+fi
+
rce_files="configure.in configure"
if ( echo $* | grep keep\-rce > /dev/null ) ; then
for i in $rce_files ; do