summaryrefslogtreecommitdiff
path: root/libc/test/src/math/log_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/test/src/math/log_test.cpp')
-rw-r--r--libc/test/src/math/log_test.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/test/src/math/log_test.cpp b/libc/test/src/math/log_test.cpp
index be156fe5987c..a68d168721e5 100644
--- a/libc/test/src/math/log_test.cpp
+++ b/libc/test/src/math/log_test.cpp
@@ -8,7 +8,6 @@
#include "hdr/math_macros.h"
#include "src/__support/FPUtil/FPBits.h"
-#include "src/__support/libc_errno.h"
#include "src/math/log.h"
#include "test/UnitTest/FPMatcher.h"
#include "test/UnitTest/Test.h"
@@ -99,7 +98,6 @@ TEST_F(LlvmLibcLogTest, InDoubleRange) {
double x = FPBits(v).get_val();
if (FPBits(v).is_nan() || FPBits(v).is_inf() || x < 0.0)
continue;
- libc_errno = 0;
double result = LIBC_NAMESPACE::log(x);
++cc;
if (FPBits(result).is_nan() || FPBits(result).is_inf())