Commit Graph
5 Commits
Author SHA1 Message Date
Fangrui SongandRich Felker 4b5ba07650 configure: make AR and RANLIB customizable 2019-07-04 12:03:18 -04:00
Fangrui SongandRich Felker 94751d8ee4 remove stray .end directives from powerpc[64] asm
maintainer's note: these are not meaningful/correct/needed and the
clang integrated assembler errors out upon seeing them.
2019-07-02 17:01:39 -04:00
Fangrui SongandRich Felker f450c150d3 remove unused struct dso members from dynlink.c
maintainer's note: commit 9d44b6460a
removed their use.
2019-05-12 09:51:45 -04:00
RayandRich Felker 086a12b920 delete a redundant if in dynamic linker ctor execution loop 2019-04-02 10:36:49 -04:00
Fangrui SongandRich Felker 3d8322c7ad bsearch: simplify and optimize
maintainer's note: the key observation here is that the compared
element is the first slot of the second ceil(half) of the array, and
thus can be removed for further comparison when it does not match, so
that we descend into the second ceil(half)-1 rather than ceil(half)
elements. this change ensures that nel strictly decreases with each
iteration, so that the case of != but nel==1 does not need to be
special-cased anymore.
2018-07-23 15:14:29 -04:00