summaryrefslogtreecommitdiff
path: root/libc/fuzzing
diff options
context:
space:
mode:
authorSiva Chandra Reddy <sivachandra@google.com>2020-03-04 15:45:51 -0800
committerSiva Chandra Reddy <sivachandra@google.com>2020-04-10 18:01:52 -0700
commite4767a6f1435164e6eb65c71a0a847812390a55e (patch)
tree34c6ac4f308e280f9df0b28dce14df26c6e76ddd /libc/fuzzing
parent49ae0fc2f085eec6606aa6816da0bf09fc5bc77f (diff)
downloadllvm-e4767a6f1435164e6eb65c71a0a847812390a55e.tar.gz
[libc] Add fully-qualified target names.
Only targets setup by the special LLVM libc rules now have fully qualified names. The naming style is similar to fully qualified names in Python. Reviewers: abrachet, PaulkaToast, phosek Differential Revision: https://reviews.llvm.org/D77340
Diffstat (limited to 'libc/fuzzing')
-rw-r--r--libc/fuzzing/string/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/fuzzing/string/CMakeLists.txt b/libc/fuzzing/string/CMakeLists.txt
index e70e91c0df99..326bf9c07175 100644
--- a/libc/fuzzing/string/CMakeLists.txt
+++ b/libc/fuzzing/string/CMakeLists.txt
@@ -3,7 +3,7 @@ add_libc_fuzzer(
SRCS
strcpy_fuzz.cpp
DEPENDS
- strcpy
- strlen
- memcpy
+ libc.src.string.memcpy
+ libc.src.string.strcpy
+ libc.src.string.strlen
)