summaryrefslogtreecommitdiff
path: root/libc/fuzzing
diff options
context:
space:
mode:
authorMichael Jones <michaelrj@google.com>2022-08-30 15:06:52 -0700
committerMichael Jones <michaelrj@google.com>2022-08-31 10:44:52 -0700
commit9ac66f0650dfb7d7bca733e4b68bbb6be455faab (patch)
treedefe30d16d83fb3037ed3aa05116fbcdb06ca1ee /libc/fuzzing
parentd45c04da7cc5fd093f611c311d3b34b0ef408165 (diff)
downloadllvm-9ac66f0650dfb7d7bca733e4b68bbb6be455faab.tar.gz
[libc][cmake] split fputil into individual targets
The libc.src.__support.FPUtil.fputil target encompassed many unrelated files, and provided a lot of hidden dependencies. This patch splits out all of these files into component parts and cleans up the cmake files that used them. It does not touch any source files for simplicity, but there may be changes made to them in future patches. Reviewed By: lntue Differential Revision: https://reviews.llvm.org/D132980
Diffstat (limited to 'libc/fuzzing')
-rw-r--r--libc/fuzzing/math/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/fuzzing/math/CMakeLists.txt b/libc/fuzzing/math/CMakeLists.txt
index 8027cc121efa..86c864083d20 100644
--- a/libc/fuzzing/math/CMakeLists.txt
+++ b/libc/fuzzing/math/CMakeLists.txt
@@ -45,7 +45,7 @@ add_libc_fuzzer(
libc.src.math.trunc
libc.src.math.truncf
libc.src.math.truncl
- libc.src.__support.FPUtil.fputil
+ libc.src.__support.FPUtil.fp_bits
libc.src.__support.CPP.type_traits
)