aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>1997-12-22 17:24:00 +0000
committerDoug Evans <dje@google.com>1997-12-22 17:24:00 +0000
commit1eb4e377283922f471da5f967e0b7153eb7ebc72 (patch)
treec368df1ec78207abc108da16c4a07d7c1769677b /include
parent80c396f6cd52a7bd3524f85e333c8679dc7cf9fb (diff)
downloadgdb-1eb4e377283922f471da5f967e0b7153eb7ebc72.zip
gdb-1eb4e377283922f471da5f967e0b7153eb7ebc72.tar.gz
gdb-1eb4e377283922f471da5f967e0b7153eb7ebc72.tar.bz2
* dis-asm.h (print_insn_txvu): Declare.
Diffstat (limited to 'include')
-rw-r--r--include/.Sanitize28
-rw-r--r--include/dis-asm.h6
2 files changed, 31 insertions, 3 deletions
diff --git a/include/.Sanitize b/include/.Sanitize
index 9aae187..36a6345 100644
--- a/include/.Sanitize
+++ b/include/.Sanitize
@@ -117,6 +117,34 @@ else
done
fi
+sky_files="ChangeLog dis-asm.h"
+if ( echo $* | grep keep\-sky > /dev/null ) ; then
+ for i in $sky_files ; do
+ if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping sky stuff in $i
+ fi
+ fi
+ done
+else
+ for i in $sky_files ; do
+ if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"sky\" from $i...
+ fi
+ cp $i new
+ sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/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
diff --git a/include/dis-asm.h b/include/dis-asm.h
index 43ec142..c6effe3 100644
--- a/include/dis-asm.h
+++ b/include/dis-asm.h
@@ -172,6 +172,9 @@ extern int print_insn_v850 PARAMS ((bfd_vma, disassemble_info*));
/* start-sanitize-tic80 */
extern int print_insn_tic80 PARAMS ((bfd_vma, disassemble_info*));
/* end-sanitize-tic80 */
+/* start-sanitize-sky */
+extern int print_insn_txvu PARAMS ((bfd_vma, disassemble_info*));
+/* end-sanitize-sky */
/* Fetch the disassembler for a given BFD, if that support is available. */
extern disassembler_ftype disassembler PARAMS ((bfd *));
@@ -200,9 +203,6 @@ extern void generic_print_address
extern int generic_symbol_at_address
PARAMS ((bfd_vma, struct disassemble_info *));
-/* Pass through the symbol associated with the address being disassembled: */
-extern void disasm_symaddr PARAMS ((asymbol *sym, disassemble_info *info));
-
/* Macro to initialize a disassemble_info struct. This should be called
by all applications creating such a struct. */
#define INIT_DISASSEMBLE_INFO(INFO, STREAM, FPRINTF_FUNC) \