summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2017-05-30 14:54:10 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2017-05-30 14:54:10 +0000
commite92fbefb8cf28f81bb012b16ee436ab515e31546 (patch)
treee0fd274b8afd3492ef4717ef08d2e0bcadbfa192 /lib
parent2e3ce07efacd5f777bd254d549761b659affc044 (diff)
Don't fall back to heapsort() if we would otherwise switch to
insertion sort (when the number of elements is < 7).
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/stdlib/qsort.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libc/stdlib/qsort.c b/lib/libc/stdlib/qsort.c
index 58f2ec47097..ca73e67f290 100644
--- a/lib/libc/stdlib/qsort.c
+++ b/lib/libc/stdlib/qsort.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: qsort.c,v 1.17 2017/05/24 21:18:25 millert Exp $ */
+/* $OpenBSD: qsort.c,v 1.18 2017/05/30 14:54:09 millert Exp $ */
/*-
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
@@ -129,18 +129,18 @@ introsort(char *a, size_t n, size_t es, size_t maxdepth, int swaptype,
int cmp_result;
size_t r, s;
-loop: if (maxdepth == 0) {
- if (heapsort(a, n, es, cmp) == 0)
- return;
- }
- maxdepth--;
- if (n < 7) {
+loop: if (n < 7) {
for (pm = a + es; pm < a + n * es; pm += es)
for (pl = pm; pl > a && cmp(pl - es, pl) > 0;
pl -= es)
swap(pl, pl - es);
return;
}
+ if (maxdepth == 0) {
+ if (heapsort(a, n, es, cmp) == 0)
+ return;
+ }
+ maxdepth--;
pm = a + (n / 2) * es;
if (n > 7) {
pl = a;