File tree Expand file tree Collapse file tree 5 files changed +0
-13
lines changed
utils/bazel/llvm-project-overlay/libc Expand file tree Collapse file tree 5 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -358,7 +358,6 @@ add_header_library(
358
358
HDRS
359
359
sincosf16_utils.h
360
360
DEPENDS
361
- libc.src.__support.FPUtil.fp_bits
362
361
libc.src.__support.FPUtil.polyeval
363
362
libc.src.__support.FPUtil.nearest_integer
364
363
libc.src.__support.common
@@ -1702,8 +1701,6 @@ add_header_library(
1702
1701
libc.src.__support.FPUtil.fenv_impl
1703
1702
libc.src.__support.FPUtil.fp_bits
1704
1703
libc.src.__support.FPUtil.multiply_add
1705
- libc.src.__support.FPUtil.nearest_integer
1706
- libc.src.__support.FPUtil.polyeval
1707
1704
libc.src.__support.FPUtil.rounding_mode
1708
1705
libc.src.__support.macros.optimization
1709
1706
libc.src.__support.common
Original file line number Diff line number Diff line change 10
10
#define LLVM_LIBC_SRC_MATH_GENERIC_EXP10F_IMPL_H
11
11
12
12
#include " explogxf.h"
13
- #include " src/__support/FPUtil/BasicOperations.h"
14
13
#include " src/__support/FPUtil/FEnvImpl.h"
15
14
#include " src/__support/FPUtil/FPBits.h"
16
- #include " src/__support/FPUtil/PolyEval.h"
17
15
#include " src/__support/FPUtil/multiply_add.h"
18
- #include " src/__support/FPUtil/nearest_integer.h"
19
16
#include " src/__support/FPUtil/rounding_mode.h"
20
17
#include " src/__support/common.h"
21
18
#include " src/__support/macros/config.h"
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC_MATH_GENERIC_RANGE_REDUCTION_DOUBLE_COMMON_H
10
10
#define LLVM_LIBC_SRC_MATH_GENERIC_RANGE_REDUCTION_DOUBLE_COMMON_H
11
11
12
- #include " src/__support/FPUtil/FPBits.h"
13
12
#include " src/__support/FPUtil/double_double.h"
14
13
#include " src/__support/FPUtil/dyadic_float.h"
15
14
#include " src/__support/FPUtil/multiply_add.h"
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC_MATH_GENERIC_SINCOSF16_UTILS_H
10
10
#define LLVM_LIBC_SRC_MATH_GENERIC_SINCOSF16_UTILS_H
11
11
12
- #include " src/__support/FPUtil/FPBits.h"
13
12
#include " src/__support/FPUtil/PolyEval.h"
14
- #include " src/__support/FPUtil/cast.h"
15
13
#include " src/__support/FPUtil/nearest_integer.h"
16
14
#include " src/__support/common.h"
17
15
#include " src/__support/macros/config.h"
Original file line number Diff line number Diff line change @@ -1797,7 +1797,6 @@ libc_support_library(
1797
1797
hdrs = ["src/math/generic/sincosf16_utils.h" ],
1798
1798
deps = [
1799
1799
":__support_common" ,
1800
- ":__support_fputil_fp_bits" ,
1801
1800
":__support_fputil_nearest_integer" ,
1802
1801
":__support_fputil_polyeval" ,
1803
1802
],
@@ -1846,11 +1845,8 @@ libc_support_library(
1846
1845
name = "exp10f_impl" ,
1847
1846
hdrs = ["src/math/generic/exp10f_impl.h" ],
1848
1847
deps = [
1849
- ":__support_fputil_basic_operations" ,
1850
1848
":__support_fputil_fma" ,
1851
1849
":__support_fputil_multiply_add" ,
1852
- ":__support_fputil_nearest_integer" ,
1853
- ":__support_fputil_polyeval" ,
1854
1850
":__support_fputil_rounding_mode" ,
1855
1851
":__support_macros_optimization" ,
1856
1852
":common_constants" ,
You can’t perform that action at this time.
0 commit comments