[libc-commits] [libc] [llvm] Improve qsort (PR #120450)
Lukas Bergdoll via libc-commits
libc-commits at lists.llvm.org
Wed Dec 18 13:54:37 PST 2024
================
@@ -27,11 +27,46 @@
namespace LIBC_NAMESPACE_DECL {
namespace internal {
+template <typename A, typename F> void sort_inst(A &array, const F &is_less) {
----------------
Voultapher wrote:
Uhh, it is a binary comparison .. the name is the same used in the code it is ported from. Take a look at how it is used in the code.
https://github.com/llvm/llvm-project/pull/120450
More information about the libc-commits
mailing list