[libcxx-commits] [libcxx] [libc++][math] Add `constexpr` for `std::signbit()` (PR #105946)
Robin Caloudis via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Sep 5 05:07:26 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
----------------
robincaloudis wrote:
Thanks for pointing out! Switching to `apple-clang-15` solved my issue. Looking at the [buildkite pipeline configs](https://github.com/llvm/llvm-project/blob/main/libcxx/utils/ci/buildkite-pipeline.yml#L24), LLVM 18 seems to be used on `Apple back-deployment macosx10.{13,15}` and `Apple back-deployment with hardening enabled`. How to know that this is related to `apple-clang-15`?
https://github.com/llvm/llvm-project/pull/105946
More information about the libcxx-commits
mailing list