While locales are not implemented, strcoll is equivalent to strcmp. This
patch moves strcoll over to the strcmp internal implementation.
Details
Details
- Reviewers
mcgrathr sivachandra
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Is there a reason not to just call __llvm_libc::strcmp ?
The two will likely get collapsed by --icf=all anyway, but making it just a tail call to start with seems ideal.
Comment Actions
Currently we're avoiding calling functions by their public name inside of other implementations when possible to keep each entrypoint independent.