diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-08-04 15:05:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-08-04 15:05:57 +0000 |
commit | c2a714f32e6c56358f6dc9400de882753e966d22 (patch) | |
tree | 1b89401522a1b171f3f11ea77f41571fe126aefc /elf/dl-close.c | |
parent | 6906cea4cc14c72110dc35c625491d482d4caef1 (diff) | |
download | glibc-c2a714f32e6c56358f6dc9400de882753e966d22.tar.gz glibc-c2a714f32e6c56358f6dc9400de882753e966d22.tar.xz glibc-c2a714f32e6c56358f6dc9400de882753e966d22.zip |
Update.
* elf/rtld.c: Correct use of __builtin_expect. * elf/dl-close.c: Remove commented-out code.
Diffstat (limited to 'elf/dl-close.c')
-rw-r--r-- | elf/dl-close.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/elf/dl-close.c b/elf/dl-close.c index 5ec8615a9a..3d24892d28 100644 --- a/elf/dl-close.c +++ b/elf/dl-close.c @@ -67,8 +67,7 @@ _dl_close (void *_map) if (map->l_opencount > 1 || map->l_type != lt_loaded) { /* There are still references to this object. Do nothing more. */ - if (//__builtin_expect (_dl_debug_files, 0)) - __builtin_expect (_dl_debug_mask & DL_DEBUG_FILES, 0)) + if (__builtin_expect (_dl_debug_mask & DL_DEBUG_FILES, 0)) { char buf[20]; |