================ @@ -15,9 +15,13 @@ #define LIBC_QSORT_QUICK_SORT 1 #define LIBC_QSORT_HEAP_SORT 2 +#ifdef LIBC_OPTIMIZE_FOR_SIZE +#define LIBC_QSORT_IMPL LIBC_QSORT_HEAP_SORT +#else ---------------- Voultapher wrote: I agree let's pull it out. https://github.com/llvm/llvm-project/pull/120450