aboutsummaryrefslogtreecommitdiff
path: root/libc/fuzzing
diff options
context:
space:
mode:
authorSiva Chandra Reddy <sivachandra@google.com>2021-10-27 18:49:00 +0000
committerSiva Chandra Reddy <sivachandra@google.com>2021-10-28 15:50:00 +0000
commitf362aea42d29da2c8620c6eb8902f31d01613edc (patch)
tree5887e65d01a1f59f0a249b7d16e1c6c4e6257ca1 /libc/fuzzing
parent3d735480bd2a720af2126c80da58371690e6a02e (diff)
downloadllvm-f362aea42d29da2c8620c6eb8902f31d01613edc.zip
llvm-f362aea42d29da2c8620c6eb8902f31d01613edc.tar.gz
llvm-f362aea42d29da2c8620c6eb8902f31d01613edc.tar.bz2
[libc][NFC] Move utils/CPP to src/__support/CPP.
The idea is to move all pieces related to the actual libc sources to the "src" directory. This allows downstream users to ship and build just the "src" directory. Reviewed By: michaelrj Differential Revision: https://reviews.llvm.org/D112653
Diffstat (limited to 'libc/fuzzing')
-rw-r--r--libc/fuzzing/math/CMakeLists.txt2
-rw-r--r--libc/fuzzing/math/Compare.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libc/fuzzing/math/CMakeLists.txt b/libc/fuzzing/math/CMakeLists.txt
index a3d3081..b1e130e 100644
--- a/libc/fuzzing/math/CMakeLists.txt
+++ b/libc/fuzzing/math/CMakeLists.txt
@@ -46,7 +46,7 @@ add_libc_fuzzer(
libc.src.math.truncf
libc.src.math.truncl
libc.src.__support.FPUtil.fputil
- libc.utils.CPP.standalone_cpp
+ libc.src.__support.CPP.standalone_cpp
)
add_libc_fuzzer(
diff --git a/libc/fuzzing/math/Compare.h b/libc/fuzzing/math/Compare.h
index 28ca904..8a794c4 100644
--- a/libc/fuzzing/math/Compare.h
+++ b/libc/fuzzing/math/Compare.h
@@ -9,8 +9,8 @@
#ifndef LLVM_LIBC_FUZZING_MATH_COMPARE_H
#define LLVM_LIBC_FUZZING_MATH_COMPARE_H
+#include "src/__support/CPP/TypeTraits.h"
#include "src/__support/FPUtil/FPBits.h"
-#include "utils/CPP/TypeTraits.h"
template <typename T>
__llvm_libc::cpp::EnableIfType<__llvm_libc::cpp::IsFloatingPointType<T>::Value,