aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2017-06-28 00:37:29 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2017-06-28 00:37:29 +0000
commit9e4519db1e01e91ee90d80a8a2a2611e02b51f06 (patch)
treec90a77a41d83059833e0aef087545718a62935e7
parent8037233b54b8d2c24d0c53a30fe159de1108a1ec (diff)
downloadllvm-9e4519db1e01e91ee90d80a8a2a2611e02b51f06.zip
llvm-9e4519db1e01e91ee90d80a8a2a2611e02b51f06.tar.gz
llvm-9e4519db1e01e91ee90d80a8a2a2611e02b51f06.tar.bz2
[asan] Fix windows build.
llvm-svn: 306493
-rw-r--r--compiler-rt/lib/asan/asan_interceptors.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/asan_interceptors.cc b/compiler-rt/lib/asan/asan_interceptors.cc
index e03c0f9..ed12a9a 100644
--- a/compiler-rt/lib/asan/asan_interceptors.cc
+++ b/compiler-rt/lib/asan/asan_interceptors.cc
@@ -711,7 +711,6 @@ void InitializeAsanInterceptors() {
// Intercept str* functions.
ASAN_INTERCEPT_FUNC(strcat); // NOLINT
ASAN_INTERCEPT_FUNC(strcpy); // NOLINT
- ASAN_INTERCEPT_FUNC(wcslen);
ASAN_INTERCEPT_FUNC(strncat);
ASAN_INTERCEPT_FUNC(strncpy);
ASAN_INTERCEPT_FUNC(strdup);