diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-07-31 23:54:19 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-07-31 23:54:19 +0000 |
commit | 13669f2c304545de194ec014255b5e3141615ac1 (patch) | |
tree | eb30ef2cd01eaf5ea67c2c69168af61d54bea01a /elf | |
parent | d2de41fe4ca8d0654e75d53139eb869d6c124803 (diff) | |
download | glibc-13669f2c304545de194ec014255b5e3141615ac1.tar.gz glibc-13669f2c304545de194ec014255b5e3141615ac1.tar.xz glibc-13669f2c304545de194ec014255b5e3141615ac1.zip |
* elf/dl-open.c (dl_open_worker): Add branch prediction.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-open.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-open.c b/elf/dl-open.c index 930400c420..cdbb6601d2 100644 --- a/elf/dl-open.c +++ b/elf/dl-open.c @@ -1,5 +1,5 @@ /* Load a shared object at runtime, relocate it, and run its initializer. - Copyright (C) 1996-2004, 2005 Free Software Foundation, Inc. + Copyright (C) 1996-2004, 2005, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -341,7 +341,7 @@ dl_open_worker (void *a) if (! l->l_real->l_relocated) { #ifdef SHARED - if (GLRO(dl_profile) != NULL) + if (__builtin_expect (GLRO(dl_profile) != NULL, 0)) { /* If this here is the shared object which we want to profile make sure the profile is started. We can find out whether |