Add sanitizer syscall hooks to the tool's export lists.

llvm-svn: 181790
This commit is contained in:
Evgeniy Stepanov 2013-05-14 13:55:21 +00:00
parent b5209bd875
commit f1efb256f6
3 changed files with 15 additions and 3 deletions

View File

@ -1 +1,5 @@
{ __asan_*; };
{
__asan_*;
__sanitizer_syscall_pre_*;
__sanitizer_syscall_post_*;
};

View File

@ -1 +1,5 @@
{ __msan_*; };
{
__msan_*;
__sanitizer_syscall_pre_*;
__sanitizer_syscall_post_*;
};

View File

@ -1 +1,5 @@
{ __tsan_*; };
{
__tsan_*;
__sanitizer_syscall_pre_*;
__sanitizer_syscall_post_*;
};