diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2016-06-21 17:28:06 +0000 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2016-06-21 17:28:06 +0000 |
| commit | 42c06a933a2173783e458948d2ceef8ac0e7314d (patch) | |
| tree | 9eedffeec8ad4200b2cf441ed2c4f615c7034354 | |
| parent | 983e6f9d66e298af4dd9e00e8d4c7e34d1723507 (diff) | |
| download | bcm5719-llvm-42c06a933a2173783e458948d2ceef8ac0e7314d.tar.gz bcm5719-llvm-42c06a933a2173783e458948d2ceef8ac0e7314d.zip | |
Fix asan_win_dll_thunk.cc test
Add the two public functions I added in my last commit in asan_win_dll_thunk.cc
Author: blastrock (Philippe Daouadi)
Reviewed in http://reviews.llvm.org/D21557
llvm-svn: 273288
| -rw-r--r-- | compiler-rt/lib/asan/asan_win_dll_thunk.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler-rt/lib/asan/asan_win_dll_thunk.cc b/compiler-rt/lib/asan/asan_win_dll_thunk.cc index d63548feb7a..eff00f9f941 100644 --- a/compiler-rt/lib/asan/asan_win_dll_thunk.cc +++ b/compiler-rt/lib/asan/asan_win_dll_thunk.cc @@ -344,6 +344,8 @@ INTERFACE_FUNCTION(__sanitizer_unaligned_store32) INTERFACE_FUNCTION(__sanitizer_unaligned_store64) INTERFACE_FUNCTION(__sanitizer_verify_contiguous_container) INTERFACE_FUNCTION(__sanitizer_install_malloc_and_free_hooks) +INTERFACE_FUNCTION(__sanitizer_start_switch_fiber) +INTERFACE_FUNCTION(__sanitizer_finish_switch_fiber) // TODO(timurrrr): Add more interface functions on the as-needed basis. |

