Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcvs2svn <>2004-02-11 20:52:09 +0300
committercvs2svn <>2004-02-11 20:52:09 +0300
commit4175d8e4358e840b06c8fdf8073cb2d0269fd08f (patch)
tree3a858624509519fcc105484c97750a8eec1df84f /include/dis-asm.h
parent7b85cc880582eb62fab36b8c06f841c33d43ee53 (diff)
This commit was manufactured by cvs2svn to create tag 'carlton-carlton-dictionary-20031111-merge
dictionary-20031111-merge'. Sprout from cagney_bfdfile-20040213-branch 2004-02-11 17:52:07 UTC cvs2svn 'This commit was manufactured by cvs2svn to create branch' Cherrypick from master 2003-11-06 11:58:58 UTC Nick Clifton <nickc@redhat.com> 'Fix 'the the' typo': COPYING.NEWLIB ChangeLog Makefile.def Makefile.in Makefile.tpl config-ml.in config/ChangeLog config/acinclude.m4 configure configure.in gettext.m4 include/ChangeLog include/aout/ChangeLog include/aout/stab.def include/bfdlink.h include/coff/ChangeLog include/coff/internal.h include/demangle.h include/dis-asm.h include/elf/ChangeLog include/elf/common.h include/elf/frv.h include/elf/m32r.h include/fibheap.h include/opcode/ChangeLog include/opcode/h8300.h include/opcode/mips.h src-release Delete: include/ChangeLog-9103 include/coff/ChangeLog-9103 include/elf/ChangeLog-9103 include/opcode/ChangeLog-9103
Diffstat (limited to 'include/dis-asm.h')
-rw-r--r--include/dis-asm.h20
1 files changed, 3 insertions, 17 deletions
diff --git a/include/dis-asm.h b/include/dis-asm.h
index 3670c5189..6bdd7517d 100644
--- a/include/dis-asm.h
+++ b/include/dis-asm.h
@@ -130,12 +130,6 @@ typedef struct disassemble_info {
int (* symbol_at_address_func)
(bfd_vma addr, struct disassemble_info * info);
- /* Function called to check if a SYMBOL is can be displayed to the user.
- This is used by some ports that want to hide special symbols when
- displaying debugging outout. */
- bfd_boolean (* symbol_is_valid)
- (asymbol *, struct disassemble_info * info);
-
/* These are for buffer_read_memory. */
bfd_byte *buffer;
bfd_vma buffer_vma;
@@ -147,7 +141,7 @@ typedef struct disassemble_info {
the same value in order to get reasonable looking output. */
int bytes_per_line;
- /* The next two variables control the way objdump displays the raw data. */
+ /* the next two variables control the way objdump displays the raw data */
/* For example, if bytes_per_line is 8 and bytes_per_chunk is 4, the */
/* output will look like this:
00: 00000000 00000000
@@ -257,16 +251,12 @@ extern void print_arm_disassembler_options (FILE *);
extern void parse_arm_disassembler_option (char *);
extern int get_arm_regname_num_options (void);
extern int set_arm_regname_option (int);
-extern int get_arm_regnames (int, const char **, const char **, const char ***);
-extern bfd_boolean arm_symbol_is_valid (asymbol *, struct disassemble_info *);
+extern int get_arm_regnames
+ (int, const char **, const char **, const char ***);
/* Fetch the disassembler for a given BFD, if that support is available. */
extern disassembler_ftype disassembler (bfd *);
-/* Amend the disassemble_info structure as necessary for the target architecture.
- Should only be called after initialising the info->arch field. */
-extern void disassemble_init_for_target (struct disassemble_info * info);
-
/* Document any target specific options available from the disassembler. */
extern void disassembler_usage (FILE *);
@@ -294,10 +284,6 @@ extern void generic_print_address
extern int generic_symbol_at_address
(bfd_vma, struct disassemble_info *);
-/* Also always true. */
-extern bfd_boolean generic_symbol_is_valid
- (asymbol *, struct disassemble_info *);
-
/* Method to initialize a disassemble_info struct. This should be
called by all applications creating such a struct. */
extern void init_disassemble_info (struct disassemble_info *info, void *stream,