[libcxx-commits] [libcxx] [libc++] Optimize ctype::to{lower, upper} (PR #145344)

Nikolas Klauser via libcxx-commits libcxx-commits at lists.llvm.org
Wed Jul 23 08:08:44 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:

These functions were never used outside the dylib, so no program can ever reference them.

https://github.com/llvm/llvm-project/pull/145344


More information about the libcxx-commits mailing list