[libcxx-commits] [PATCH] D118188: [libcxx] [Windows] Pick a unique bit for __regex_word

Vincent Palatin via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Feb 15 00:23:03 PST 2022


vpalatin added a comment.

This is failing for **Newlib** / **Picolibc** too (defining `_NEWLIB_VERSION`).

As far as I can tell, the `mask` there is a `char` and all 8 bits are currently defined in newlib:

  #define _U      01
  #define _L      02
  #define _N      04
  #define _S      010
  #define _P      020
  #define _C      040
  #define _X      0100
  #define _B      0200

What would be the proper fix ?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D118188/new/

https://reviews.llvm.org/D118188



More information about the libcxx-commits mailing list