mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
5d9f0ecf62
command line option. * listing.h, listing.c: now prints addresses with ??? instead of 0 when errors in assemble prevent addresses being known. Prints symbol table more tidily. Allows different parts of the listing to be selected.
21 lines
467 B
C
21 lines
467 B
C
|
|
#ifndef NO_LISTING
|
|
#define LISTING_NEWLINE() if (listing) listing_newline(input_line_pointer);
|
|
#else
|
|
#define LISTING_NEWLINE()
|
|
#endif
|
|
void EXFUN(listing_title,(unsigned int depth));
|
|
void EXFUN(listing_list,());
|
|
void EXFUN(listing_flags,());
|
|
void EXFUN(listing_psize,());
|
|
void EXFUN(listing_eject,());
|
|
void EXFUN(listing_width,(unsigned int x));
|
|
|
|
|
|
#define LISTING_LISTING 1
|
|
#define LISTING_SYMBOLS 2
|
|
#define LISTING_NOFORM 4
|
|
#define LISTING_DEFAULT 3
|
|
|
|
|