Skip to content

Commit 687dac4

Browse files
committed
acospif16.h - removed acosf16.h
acospif16.cpp - added missing header CMakeLists - changed dependencies for acospif16, since it doesn't use ExceptValues like acosf16
1 parent 4d69d5f commit 687dac4

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

libc/src/math/acospif16.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
#include "src/__support/macros/config.h"
1313
#include "src/__support/macros/properties/types.h"
14-
#include "src/math/acosf16.h"
1514

1615
namespace LIBC_NAMESPACE_DECL {
1716

libc/src/math/generic/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4122,7 +4122,6 @@ add_entrypoint_object(
41224122
libc.hdr.errno_macros
41234123
libc.hdr.fenv_macros
41244124
libc.src.__support.FPUtil.cast
4125-
libc.src.__support.FPUtil.except_value_utils
41264125
libc.src.__support.FPUtil.fenv_impl
41274126
libc.src.__support.FPUtil.fp_bits
41284127
libc.src.__support.FPUtil.multiply_add

libc/src/math/generic/acospif16.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@
88
//===----------------------------------------------------------------------===//
99

1010
#include "src/math/acospif16.h"
11+
#include "hdr/errno_macros.h"
12+
#include "hdr/fenv_macros.h"
13+
#include "src/__support/FPUtil/FEnvImpl.h"
14+
#include "src/__support/FPUtil/FPBits.h"
15+
#include "src/__support/FPUtil/PolyEval.h"
1116
#include "src/__support/FPUtil/cast.h"
12-
#include "src/__support/FPUtil/except_value_utils.h"
1317
#include "src/__support/FPUtil/multiply_add.h"
1418
#include "src/__support/FPUtil/sqrt.h"
1519
#include "src/__support/macros/optimization.h"

0 commit comments

Comments
 (0)