[libcxx-commits] [libcxx] [libc++] Implement P2876R3: std::simd constructors and accessors (PR #177216)
Hristo Hristov via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Jan 21 19:08:42 PST 2026
================
@@ -0,0 +1,69 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+// UNSUPPORTED: c++03, c++11, c++14
+
+// <experimental/simd>
+//
+// [simd.mask.namedconv]
+// constexpr bitset<size()> to_bitset() const noexcept;
+// constexpr unsigned long long to_ullong() const;
+
+#include "../test_utils.h"
+#include <bitset>
----------------
Zingam wrote:
```suggestion
#include <bitset>
#include "../test_utils.h"
```
https://github.com/llvm/llvm-project/pull/177216
More information about the libcxx-commits
mailing list