[PATCH] D13673: Add initial support for the MUSL C library.

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Tue Oct 20 14:12:30 PDT 2015


EricWF added a comment.

Thanks for the update, I think this should be good to go. I'll give it a final once over tonight.


================
Comment at: src/locale.cpp:958
@@ -957,3 +961,3 @@
     return static_cast<char>(__classic_lower_table()[static_cast<unsigned char>(c)]);
-#elif defined(__GLIBC__) || defined(__EMSCRIPTEN__) || defined(__NetBSD__)
     return isascii(c) ?
----------------
Ah, sorry I missed that. So this was an existing bug. Thanks.


http://reviews.llvm.org/D13673





More information about the cfe-commits mailing list