* ecoff.h (AUX_GET_ANY, AUX_PUT_ANY): Changed to reflect further

change in bfd swapping routine names.
This commit is contained in:
Ian Lance Taylor 1993-09-07 18:24:31 +00:00
parent 8adcfb97ad
commit 838b55955e
2 changed files with 8 additions and 16 deletions

View File

@ -1,3 +1,8 @@
Tue Sep 7 14:20:43 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* ecoff.h (AUX_GET_ANY, AUX_PUT_ANY): Changed to reflect further
change in bfd swapping routine names.
Tue Sep 7 10:15:17 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* ecoff.h (AUX_GET_ANY): Change name of _do_getb32 to reflect bfd

View File

@ -181,18 +181,8 @@ union aux_ext {
unsigned char a_count[4];
};
/* FIXME! These are copied from ../bfd/libbfd.h. They are used by
GDB (mipsread.c). */
extern bfd_vma _bfd__do_getb32 PARAMS ((unsigned char *addr));
extern bfd_vma _bfd__do_getl32 PARAMS ((unsigned char *addr));
#if 0
/* These don't seem to be used. */
extern void _do_putb32 PARAMS ((bfd_vma data, unsigned char *addr));
extern void _do_putl32 PARAMS ((bfd_vma data, unsigned char *addr));
#endif
#define AUX_GET_ANY(bigend, ax, field) \
((bigend) ? _bfd__do_getb32 ((ax)->field) : _bfd__do_getl32 ((ax)->field))
((bigend) ? bfd_getb32 ((ax)->field) : bfd_getl32 ((ax)->field))
#define AUX_GET_DNLOW(bigend, ax) AUX_GET_ANY ((bigend), (ax), a_dnLow)
#define AUX_GET_DNHIGH(bigend, ax) AUX_GET_ANY ((bigend), (ax), a_dnHigh)
@ -201,12 +191,10 @@ extern void _do_putl32 PARAMS ((bfd_vma data, unsigned char *addr));
#define AUX_GET_WIDTH(bigend, ax) AUX_GET_ANY ((bigend), (ax), a_width)
#define AUX_GET_COUNT(bigend, ax) AUX_GET_ANY ((bigend), (ax), a_count)
#if 0
/* These don't seem to be used. */
#define AUX_PUT_ANY(bigend, val, ax, field) \
((bigend) \
? (_do_putb32 ((val), (ax)->field), 0) \
: (_do_putl32 ((val), (ax)->field), 0))
? (bfd_putb32 ((val), (ax)->field), 0) \
: (bfd_putl32 ((val), (ax)->field), 0))
#define AUX_PUT_DNLOW(bigend, val, ax) \
AUX_PUT_ANY ((bigend), (val), (ax), a_dnLow)
@ -220,7 +208,6 @@ extern void _do_putl32 PARAMS ((bfd_vma data, unsigned char *addr));
AUX_PUT_ANY ((bigend), (val), (ax), a_width)
#define AUX_PUT_COUNT(bigend, val, ax) \
AUX_PUT_ANY ((bigend), (val), (ax), a_count)
#endif
/* Prototypes for the swapping functions. These require that sym.h be
included before this file. */