summaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2023-02-16 09:15:57 +1030
committerAlan Modra <amodra@gmail.com>2023-02-16 21:00:50 +1030
commit7ed4ad59e91d8bd14807d6ca6a64b93757596df2 (patch)
treea0beacff1c2dc37582569dfc5fee98260f521130 /ld
parent7f27b6b18a0b72372128b2f49f743084776f1c54 (diff)
downloadbinutils-gdb-7ed4ad59e91d8bd14807d6ca6a64b93757596df2.tar.gz
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 'ld')
-rw-r--r--ld/ldmain.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/ld/ldmain.c b/ld/ldmain.c
index 8c2fc9b8d8c..25cc89b72f9 100644
--- a/ld/ldmain.c
+++ b/ld/ldmain.c
@@ -23,7 +23,6 @@
#include "bfd.h"
#include "safe-ctype.h"
#include "libiberty.h"
-#include "progress.h"
#include "bfdlink.h"
#include "ctf-api.h"
#include "filenames.h"
@@ -263,8 +262,6 @@ main (int argc, char **argv)
program_name = argv[0];
xmalloc_set_program_name (program_name);
- START_PROGRESS (program_name, 0);
-
expandargv (&argc, &argv);
if (bfd_init () != BFD_INIT_MAGIC)
@@ -618,8 +615,6 @@ main (int argc, char **argv)
}
}
- END_PROGRESS (program_name);
-
if (config.stats)
{
long run_time = get_run_time () - start_time;