[libcxx-commits] [clang] [libcxx] [Clang] Support atomic operations on _BitInt(N) (PR #204815)
Xavier Roche via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Jun 26 23:33:58 PDT 2026
================
@@ -10412,8 +10412,6 @@ QualType Sema::BuildAtomicType(QualType T, SourceLocation Loc) {
else if (!T.isTriviallyCopyableType(Context) && getLangOpts().CPlusPlus)
// Some other non-trivially-copyable type (probably a C++ class)
DisallowedKind = 7;
- else if (T->isBitIntType())
- DisallowedKind = 8;
----------------
xroche wrote:
Done!
https://github.com/llvm/llvm-project/pull/204815
More information about the libcxx-commits
mailing list