[libcxx-commits] [PATCH] D146294: [libcxx] Fix crash in std::stringstream with payload >= INT_MAX

Michał Górny via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Sat May 20 20:58:49 PDT 2023


mgorny added a comment.

Other options could be:

- using regexps to grab wider range of targets (e.g. `i.86-.*`, `arm.*`, `powerpc-.*` and so on),
- doing a `if (sizeof(void*) < 8) return 0` or alike in the test.

Note that I haven't tested either.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D146294



More information about the libcxx-commits mailing list