[llvm-branch-commits] [libc] [libc][math] Qualify ceil functions to constexpr (PR #184948)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Sat Mar 7 09:22:08 PST 2026
================
@@ -15,7 +15,19 @@
namespace LIBC_NAMESPACE_DECL {
namespace math {
-LIBC_INLINE long double ceill(long double x) { return fputil::ceil(x); }
+// TODO(bassiounix): Re-enable long double tests on X86 once float80 is complete
----------------
lntue wrote:
Let's not mark any of the `long double` functions `constexpr` yet. Create a separate issue to track enabling `constexpr` for `long double` functions.
https://github.com/llvm/llvm-project/pull/184948
More information about the llvm-branch-commits
mailing list