mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-09 21:22:20 +08:00
* as.h: Remove #if 0'd code.
* atof-generic.c (atof_generic): Likewise. * ecoff.c (ecoff_directive_frame): Likewise. * frags.h (FRAG_APPEND_1_CHAR): Likewise. * itbl-ops.c (itbl_add_reg): Likewise. * listing.c (calc_hex): Likewise. * read.c (MASK_CHAR): Likewise. * subsegs.c (subsegs_print_statistics): Likewise. * symbols.c (indent): Likewise. * write.c (write_relocs): Likewise. (write_object_file): Likewise. (relax_frag): Likewise.
This commit is contained in:
14
gas/frags.h
14
gas/frags.h
@ -119,22 +119,8 @@ COMMON fragS zero_address_frag;
|
||||
/* For local common (N_BSS segment) fixups. */
|
||||
COMMON fragS bss_address_frag;
|
||||
|
||||
#if 0
|
||||
/* A macro to speed up appending exactly 1 char to current frag. */
|
||||
/* JF changed < 1 to <= 1 to avoid a race condition. */
|
||||
#define FRAG_APPEND_1_CHAR(datum) \
|
||||
{ \
|
||||
if (obstack_room (&frags) <= 1) \
|
||||
{ \
|
||||
frag_wane (frag_now); \
|
||||
frag_new (0); \
|
||||
} \
|
||||
obstack_1grow (&frags, datum); \
|
||||
}
|
||||
#else
|
||||
extern void frag_append_1_char (int);
|
||||
#define FRAG_APPEND_1_CHAR(X) frag_append_1_char (X)
|
||||
#endif
|
||||
|
||||
void frag_init (void);
|
||||
fragS *frag_alloc (struct obstack *);
|
||||
|
Reference in New Issue
Block a user