[libcxx-commits] [libcxx] [libc++][math] Add `constexpr` for `std::signbit()` (PR #105946)
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Sep 5 05:18:43 PDT 2024
================
@@ -0,0 +1,78 @@
+//===----------------------------------------------------------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+// bool signbit(floating-point-type x); // constexpr since C++23
+
+// We don't control the implementation on windows
+// UNSUPPORTED: windows
+
+// These compilers don't support constexpr `__builtin_signbit` yet.
+// UNSUPPORTED: clang-17, clang-18, clang-19, apple-clang-16, apple-clang-17, apple-clang-18
----------------
philnik777 wrote:
AppleClang is unrelated to the LLVM header version. We currently document AppleClang15 as the only supported AppleClang: https://libcxx.llvm.org/#platform-and-compiler-support
https://github.com/llvm/llvm-project/pull/105946
More information about the libcxx-commits
mailing list