From d4f170a9800ea45c8519859d9d5abe8ae80f036b Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 8 Jun 2000 04:19:30 +0000 Subject: [PATCH] Update. * sysdeps/i386/dl-machine.h: Add more __builtin_expect. --- ChangeLog | 2 ++ sysdeps/i386/dl-machine.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 375fe2e..cf9dfad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2000-06-07 Ulrich Drepper + * sysdeps/i386/dl-machine.h: Add more __builtin_expect. + * elf/do-lookup.h: Add some __builtin_expect. * dlfcn/dlfcn.h: Pretty print dladdr declaraction. diff --git a/sysdeps/i386/dl-machine.h b/sysdeps/i386/dl-machine.h index d7310ed..3044edf 100644 --- a/sysdeps/i386/dl-machine.h +++ b/sysdeps/i386/dl-machine.h @@ -99,7 +99,7 @@ elf_machine_runtime_setup (struct link_map *l, int lazy, int profile) to intercept the calls to collect information. In this case we don't store the address in the GOT so that all future calls also end in this function. */ - if (profile) + if (__builtin_expect (profile, 0)) { got[2] = (Elf32_Addr) &_dl_runtime_profile; -- 2.7.4