[libcxx-commits] [PATCH] D132946: [SystemZ][z/OS] Account for renamed parameter name (libc++)
Muiez Ahmed via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Aug 30 08:02:17 PDT 2022
muiez created this revision.
muiez added reviewers: zibi, fanbo-meng, libc++.
Herald added a project: All.
muiez requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added 1 blocking reviewer(s): libc++.
The following patch (https://reviews.llvm.org/D129051) broke z/OS builds by renaming the parameter name. This patch accounts for that change.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D132946
Files:
libcxx/include/regex
Index: libcxx/include/regex
===================================================================
--- libcxx/include/regex
+++ libcxx/include/regex
@@ -1355,7 +1355,7 @@
unsigned char __to_lower(unsigned char __c)
{
#if defined(__MVS__) && !defined(__NATIVE_ASCII_F)
- return c & 0xBF;
+ return __c & 0xBF;
#else
return __c | 0x20;
#endif
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D132946.456675.patch
Type: text/x-patch
Size: 353 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220830/92265265/attachment.bin>
More information about the libcxx-commits
mailing list