+Thu Nov 5 04:43:09 1992 John Gilmore (gnu@cygnus.com)
+
+ * bfd-in.h, bfd.c, libbfd.h, reloc.c, seclet.h, section.c,
+ targets.c: Rename struct bfd_seclet_struct to struct bfd_seclet.
+
Thu Nov 5 02:59:09 1992 John Gilmore (gnu@cygnus.com)
Cleanup: Replace all uses of EXFUN in the BFD sources, with PARAMS.
#ifndef _SECLET_H
#define _SECLET_H
-typedef enum bfd_seclet_enum
+enum bfd_seclet_enum
{
bfd_indirect_seclet,
bfd_fill_seclet
-} bfd_seclet_enum_type;
-
+};
-struct bfd_seclet_struct
+struct bfd_seclet
{
- struct bfd_seclet_struct *next;
- bfd_seclet_enum_type type;
+ struct bfd_seclet *next;
+ enum bfd_seclet_enum type;
unsigned int offset;
unsigned int size;
union
u;
};
-typedef struct bfd_seclet_struct bfd_seclet_type;
+typedef struct bfd_seclet bfd_seclet_type;
bfd_seclet_type *
-bfd_new_seclet PARAMS ((bfd*, asection*));
+bfd_new_seclet PARAMS ((bfd *, asection *));
#endif
. {* A symbol which points at this section only *}
. struct symbol_cache_entry *symbol;
. struct symbol_cache_entry **symbol_ptr_ptr;
-. struct bfd_seclet_struct *seclets_head;
-. struct bfd_seclet_struct *seclets_tail;
+. struct bfd_seclet *seclets_head;
+. struct bfd_seclet *seclets_tail;
.} asection ;
.
.
. flagword section_flags;
+The character normally found at the front of a symbol
+(if any), perhaps _.
+
+. char symbol_leading_char;
+
The pad character for filenames within an archive header.
. char ar_pad_char;
. SDEF (void, _bfd_debug_info_start, (bfd *));
. SDEF (void, _bfd_debug_info_end, (bfd *));
. SDEF (void, _bfd_debug_info_accumulate, (bfd *, struct sec *));
-. SDEF (bfd_byte *, _bfd_get_relocated_section_contents, (bfd*,struct bfd_seclet_struct *, bfd_byte *data));
+. SDEF (bfd_byte *, _bfd_get_relocated_section_contents, (bfd*,struct bfd_seclet *, bfd_byte *data));
. SDEF (boolean,_bfd_relax_section,(bfd *, struct sec *, struct symbol_cache_entry **));
Special entry points for gdb to swap in coff symbol table parts
DEFUN_VOID(bfd_target_list)
{
int vec_length= 0;
- bfd_target **target;
+#ifdef NATIVE_HPPAHPUX_COMPILER
+ /* The native compiler on the HP9000/700 has a bug which causes it
+ to loop endlessly when compiling this file. This avoids it. */
+ volatile
+#endif
+ bfd_target **target;
CONST char **name_list, **name_ptr;
for (target = &target_vector[0]; *target != NULL; target++)