mirror of git://sourceware.org/git/glibc.git
Update.
* sysdeps/i386/dl-machine.h: Add more __builtin_expect.
This commit is contained in:
parent
7e281477f1
commit
d4f170a980
|
@ -1,5 +1,7 @@
|
||||||
2000-06-07 Ulrich Drepper <drepper@redhat.com>
|
2000-06-07 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/i386/dl-machine.h: Add more __builtin_expect.
|
||||||
|
|
||||||
* elf/do-lookup.h: Add some __builtin_expect.
|
* elf/do-lookup.h: Add some __builtin_expect.
|
||||||
|
|
||||||
* dlfcn/dlfcn.h: Pretty print dladdr declaraction.
|
* dlfcn/dlfcn.h: Pretty print dladdr declaraction.
|
||||||
|
|
|
@ -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
|
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
|
don't store the address in the GOT so that all future calls also
|
||||||
end in this function. */
|
end in this function. */
|
||||||
if (profile)
|
if (__builtin_expect (profile, 0))
|
||||||
{
|
{
|
||||||
got[2] = (Elf32_Addr) &_dl_runtime_profile;
|
got[2] = (Elf32_Addr) &_dl_runtime_profile;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue