summaryrefslogtreecommitdiff
path: root/libc/test/src/math/exp_test.cpp
diff options
context:
space:
mode:
authorlntue <lntue@google.com>2025-06-11 16:25:27 -0400
committerGitHub <noreply@github.com>2025-06-11 16:25:27 -0400
commitd87eea35fac5a34a841c637db8908128409a184e (patch)
tree1e2e4906008e51b5b518d0592cb1bc7924e7c832 /libc/test/src/math/exp_test.cpp
parentfb761aa38b0bc01ab911f5dbbfb474b70aaafbb4 (diff)
[libc] Move libc_errno.h to libc/src/__support and make LIBC_ERRNO_MODE_SYSTEM to be header-only. (#143187)
This is the first step in preparation for: https://discourse.llvm.org/t/rfc-make-clang-builtin-math-functions-constexpr-with-llvm-libc-to-support-c-23-constexpr-math-functions/86450
Diffstat (limited to 'libc/test/src/math/exp_test.cpp')
-rw-r--r--libc/test/src/math/exp_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/test/src/math/exp_test.cpp b/libc/test/src/math/exp_test.cpp
index 0ab3a4e54346..83addaeb943d 100644
--- a/libc/test/src/math/exp_test.cpp
+++ b/libc/test/src/math/exp_test.cpp
@@ -8,7 +8,7 @@
#include "hdr/math_macros.h"
#include "src/__support/FPUtil/FPBits.h"
-#include "src/errno/libc_errno.h"
+#include "src/__support/libc_errno.h"
#include "src/math/exp.h"
#include "test/UnitTest/FPMatcher.h"
#include "test/UnitTest/Test.h"
@@ -78,7 +78,7 @@ TEST_F(LlvmLibcExpTest, InDoubleRange) {
double x = FPBits(v).get_val();
if (FPBits(v).is_nan() || FPBits(v).is_inf() || x < 0.0)
continue;
- LIBC_NAMESPACE::libc_errno = 0;
+ libc_errno = 0;
double result = LIBC_NAMESPACE::exp(x);
++cc;
if (FPBits(result).is_nan() || FPBits(result).is_inf())