[PATCH] D61634: [clang/llvm] Allow efficient implementation of libc's memory functions in C/C++

Kristina Brooks via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat May 25 02:47:21 PDT 2019


kristina added a comment.

In D61634#1517228 <https://reviews.llvm.org/D61634#1517228>, @xbolva00 wrote:

> I have a question about qsort.. If we provide own implementation of qsort and replace calls to libc's qsort to our qsort, we could fully inline cmp function then. Ideas?


`qsort` would seem out of scope here since this is mostly about `string.h` style functions, more specifically `memcpy`/`memmove`. Things like `memset` would also fall under this category if covered in subsequent diffs.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D61634/new/

https://reviews.llvm.org/D61634





More information about the llvm-commits mailing list