diff options
author | Catherine Moore <clm@redhat.com> | 1998-08-10 01:27:05 +0000 |
---|---|---|
committer | Catherine Moore <clm@redhat.com> | 1998-08-10 01:27:05 +0000 |
commit | 0ff7faafe6a582f16c124e88fb31067cf66cbaef (patch) | |
tree | f8dc956a698d81e0663429ea010a76ff59d90456 /opcodes/.Sanitize | |
parent | a582ac33a3bf6bcc8dd52fafdb5a0935b2950a67 (diff) | |
download | gdb-0ff7faafe6a582f16c124e88fb31067cf66cbaef.zip gdb-0ff7faafe6a582f16c124e88fb31067cf66cbaef.tar.gz gdb-0ff7faafe6a582f16c124e88fb31067cf66cbaef.tar.bz2 |
* arm-dis.c (print_insn_big_arm): Check for thumb symbol
attributes.
(print_insn_little_arm): Likewise.
Diffstat (limited to 'opcodes/.Sanitize')
-rw-r--r-- | opcodes/.Sanitize | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/opcodes/.Sanitize b/opcodes/.Sanitize index 32fe276..72d7aa7 100644 --- a/opcodes/.Sanitize +++ b/opcodes/.Sanitize @@ -186,6 +186,34 @@ else done fi +armelf_files="ChangeLog arm-dis.c" +if ( echo $* | grep keep\-armelf > /dev/null ) ; then + for i in $armelf_files ; do + if test ! -d $i && (grep sanitize-armelf $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Keeping armelf stuff in $i + fi + fi + done +else + for i in $armelf_files ; do + if test ! -d $i && (grep sanitize-armelf $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Removing traces of \"armelf\" from $i... + fi + cp $i new + sed '/start\-sanitize\-armelf/,/end-\sanitize\-armelf/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 + v850e_files="ChangeLog Makefile.in Makefile.am configure.in configure disassemble.c v850-opc.c v850-dis.c" if ( echo $* | grep keep\-v850e > /dev/null ) ; then for i in $v850e_files ; do |