forked from OSchip/llvm-project
Add sanitizer syscall hooks to the tool's export lists.
llvm-svn: 181790
This commit is contained in:
parent
b5209bd875
commit
f1efb256f6
|
@ -1 +1,5 @@
|
|||
{ __asan_*; };
|
||||
{
|
||||
__asan_*;
|
||||
__sanitizer_syscall_pre_*;
|
||||
__sanitizer_syscall_post_*;
|
||||
};
|
||||
|
|
|
@ -1 +1,5 @@
|
|||
{ __msan_*; };
|
||||
{
|
||||
__msan_*;
|
||||
__sanitizer_syscall_pre_*;
|
||||
__sanitizer_syscall_post_*;
|
||||
};
|
||||
|
|
|
@ -1 +1,5 @@
|
|||
{ __tsan_*; };
|
||||
{
|
||||
__tsan_*;
|
||||
__sanitizer_syscall_pre_*;
|
||||
__sanitizer_syscall_post_*;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue