diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-17 15:41:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-17 15:41:59 +0000 |
commit | 466a0ec9985e540107ba6e92ba2f6a268ce04154 (patch) | |
tree | 56d3ced0641e1623216a5f07045d57d466df6378 /elf/dl-fini.c | |
parent | e3265f5bc52f21b7da063813b4d0134a343e9a28 (diff) | |
download | glibc-466a0ec9985e540107ba6e92ba2f6a268ce04154.tar.gz glibc-466a0ec9985e540107ba6e92ba2f6a268ce04154.tar.xz glibc-466a0ec9985e540107ba6e92ba2f6a268ce04154.zip |
Update.
* elf/dl-reloc.c (_dl_relocat_object): Add more __builtin_expect. * elf/dl-lookup.c: Add more __builtin_expect. * elf/dl-init.c (_dl_init): Add more __builtin_expect. * elf/dl-fini.c (_dl_fini): Add more __builtin_expect. * elf/dl-deps.c (_dl_map_object_deps): Add more __builtin_expect. * elf/dl-close.c (_dl_close): Add more __builtin_expect. * elf/rtld.c (_dl_start_final): Add more __builtin_expect.
Diffstat (limited to 'elf/dl-fini.c')
-rw-r--r-- | elf/dl-fini.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-fini.c b/elf/dl-fini.c index a285c77316..f218689628 100644 --- a/elf/dl-fini.c +++ b/elf/dl-fini.c @@ -141,7 +141,7 @@ _dl_fini (void) continue; /* When debugging print a message first. */ - if (_dl_debug_impcalls) + if (__builtin_expect (_dl_debug_impcalls, 0)) _dl_debug_message (1, "\ncalling fini: ", l->l_name[0] ? l->l_name : _dl_argv[0], "\n\n", NULL); |