diff options
| author | Viktor Kutuzov <vkutuzov@accesssoftek.com> | 2014-12-22 14:45:30 +0000 |
|---|---|---|
| committer | Viktor Kutuzov <vkutuzov@accesssoftek.com> | 2014-12-22 14:45:30 +0000 |
| commit | 90f8673f05dcfa48f27f91bb65c6a92fc33a7418 (patch) | |
| tree | 46485c78ad1be6af358bf9365c5e55b287ace769 /compiler-rt/lib | |
| parent | 2a5b81dd7f74b44bc543211c92201f3eda4ecb78 (diff) | |
| download | bcm5719-llvm-90f8673f05dcfa48f27f91bb65c6a92fc33a7418.tar.gz bcm5719-llvm-90f8673f05dcfa48f27f91bb65c6a92fc33a7418.zip | |
[Sanitizers] Intercept wcsnrtombs() on FreeBSD
Differential Revision: http://reviews.llvm.org/D6755
llvm-svn: 224709
Diffstat (limited to 'compiler-rt/lib')
| -rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h b/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h index 238ea0fd63b..0a4984bec9b 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h +++ b/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h @@ -134,7 +134,8 @@ #define SANITIZER_INTERCEPT_MBSTOWCS SI_NOT_WINDOWS #define SANITIZER_INTERCEPT_MBSNRTOWCS SI_MAC || SI_LINUX_NOT_ANDROID #define SANITIZER_INTERCEPT_WCSTOMBS SI_NOT_WINDOWS -#define SANITIZER_INTERCEPT_WCSNRTOMBS SI_MAC || SI_LINUX_NOT_ANDROID +#define SANITIZER_INTERCEPT_WCSNRTOMBS \ + SI_FREEBSD || SI_MAC || SI_LINUX_NOT_ANDROID #define SANITIZER_INTERCEPT_TCGETATTR SI_LINUX_NOT_ANDROID #define SANITIZER_INTERCEPT_REALPATH SI_NOT_WINDOWS #define SANITIZER_INTERCEPT_CANONICALIZE_FILE_NAME SI_LINUX_NOT_ANDROID |

