[libcxx-commits] [libcxx] [libc++] Optimize ctype::to{lower, upper} (PR #145344)
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Jul 30 05:26:35 PDT 2025
================
@@ -16,6 +16,15 @@ New entries should be added directly below the "Version" header.
Version 21.0
------------
+* [libc++] Optimize ctype::to{lower,upper}
+
+ This patch removed __classic_upper_table() and __classic_lower_table(), which were only ever accessed from the dylib.
----------------
philnik777 wrote:
Yes, exactly. This is a libc++-internal function. We've never used it ourselves in the headers, so it's your own fault if you call them. It's even more unlikely anybody even tried to use them, since it's not available on most platforms either.
https://github.com/llvm/llvm-project/pull/145344
More information about the libcxx-commits
mailing list