* elf/dl-fini.c (_dl_fini): Combine _dl_debug_printf calls.
* elf/rtld.c (print_statistics): Likewise.
2004-03-06 Ulrich Drepper <drepper@redhat.com>
+ * elf/dl-fini.c (_dl_fini): Combine _dl_debug_printf calls.
+ * elf/rtld.c (print_statistics): Likewise.
+
* elf/dl-open.c: No need to pass any parameter to _dl_start_profile.
They are the same in both places.
* elf/dl-profile.c: Likewise.
__rtld_lock_unlock_recursive (GL(dl_load_lock));
if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_STATISTICS, 0))
- {
- _dl_debug_printf ("\nruntime linker statistics:\n");
- _dl_debug_printf ("\
- final number of relocations: %lu\n",
- GL(dl_num_relocations));
- _dl_debug_printf ("\
-final number of relocations from cache: %lu\n",
- GL(dl_num_cache_relocations));
- }
+ _dl_debug_printf ("\nruntime linker statistics:\n"
+ " final number of relocations: %lu\n"
+ "final number of relocations from cache: %lu\n",
+ GL(dl_num_relocations),
+ GL(dl_num_cache_relocations));
}
num_relative_relocations += l->l_info[VERSYMIDX (DT_RELACOUNT)]->d_un.d_val;
}
- _dl_debug_printf (" number of relocations: %lu\n",
- GL(dl_num_relocations));
- _dl_debug_printf (" number of relocations from cache: %lu\n",
- GL(dl_num_cache_relocations));
- _dl_debug_printf (" number of relative relocations: %lu\n",
+ _dl_debug_printf (" number of relocations: %lu\n"
+ " number of relocations from cache: %lu\n"
+ " number of relative relocations: %lu\n",
+ GL(dl_num_relocations),
+ GL(dl_num_cache_relocations),
num_relative_relocations);
#ifndef HP_TIMING_NONAVAIL