[clang] [clang] Make __builtin_exp and __builtin_expf constexpr. (PR #199808)
Hubert Tong via cfe-commits
cfe-commits at lists.llvm.org
Thu Jun 11 16:46:04 PDT 2026
================
@@ -0,0 +1,19 @@
+// RUN: %clang_cc1 -std=c++17 -fsyntax-only -verify %s
+// RUN: %clang_cc1 -std=c++17 -fsyntax-only -verify -fexperimental-new-constant-interpreter %s
+// expected-no-diagnostics
+
+constexpr float InfFloat = __builtin_inff();
+constexpr float NegInfFloat = -__builtin_inff();
+
----------------
hubert-reinterpretcast wrote:
No testing with NaN input values?
https://github.com/llvm/llvm-project/pull/199808
More information about the cfe-commits
mailing list