diff options
author | Alan Modra <amodra@gmail.com> | 2023-02-16 09:15:57 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2023-02-16 21:00:50 +1030 |
commit | 7ed4ad59e91d8bd14807d6ca6a64b93757596df2 (patch) | |
tree | a0beacff1c2dc37582569dfc5fee98260f521130 /binutils/ar.c | |
parent | 7f27b6b18a0b72372128b2f49f743084776f1c54 (diff) | |
download | gdb-7ed4ad59e91d8bd14807d6ca6a64b93757596df2.zip gdb-7ed4ad59e91d8bd14807d6ca6a64b93757596df2.tar.gz gdb-7ed4ad59e91d8bd14807d6ca6a64b93757596df2.tar.bz2 |
Delete PROGRESS macros
I don't see much point in cluttering the source with the PROGRESS
macros, which of course do nothing at all with the definitions in
progress.h. progress.h is unchanged apart from the copyright comment
since commit d4d4c53c68f0 in 1994.
binutils/
* ar.c: Don't include progress.h, or invoke PROGRESS macros.
* nm.c: Likewise.
* objcopy.c: Likewise.
* objdump.c: Likewise.
gas/
* as.h: Don't include progress.h.
* as.c: Don't invoke PROGRESS macros.
* write.c: Likewise.
include/
* progress.h: Delete.
ld/
* ldmain.c: Don't include progress.h, or invoke PROGRESS macros.
Diffstat (limited to 'binutils/ar.c')
-rw-r--r-- | binutils/ar.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/binutils/ar.c b/binutils/ar.c index 2c901ca..0c6ccf9 100644 --- a/binutils/ar.c +++ b/binutils/ar.c @@ -26,7 +26,6 @@ #include "sysdep.h" #include "bfd.h" #include "libiberty.h" -#include "progress.h" #include "getopt.h" #include "aout/ar.h" #include "bucomm.h" @@ -198,10 +197,7 @@ map_over_members (bfd *arch, void (*function)(bfd *), char **files, int count) if (count == 0) { for (head = arch->archive_next; head; head = head->archive_next) - { - PROGRESS (1); - function (head); - } + function (head); return; } @@ -223,7 +219,6 @@ map_over_members (bfd *arch, void (*function)(bfd *), char **files, int count) { const char * filename; - PROGRESS (1); /* PR binutils/15796: Once an archive element has been matched do not match it again. If the user provides multiple same-named parameters on the command line their intent is to match multiple @@ -749,8 +744,6 @@ main (int argc, char **argv) is_ranlib = 0; } - START_PROGRESS (program_name, 0); - if (bfd_init () != BFD_INIT_MAGIC) fatal (_("fatal error: libbfd ABI mismatch")); set_default_bfd_target (); @@ -952,8 +945,6 @@ main (int argc, char **argv) } } - END_PROGRESS (program_name); - xexit (0); return 0; } @@ -1063,7 +1054,6 @@ open_inarch (const char *archive_filename, const char *file) next_one; next_one = bfd_openr_next_archived_file (arch, next_one)) { - PROGRESS (1); *last_one = next_one; last_one = &next_one->archive_next; } |