diff options
author | Kostya Serebryany <kcc@google.com> | 2014-12-16 21:06:07 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2014-12-16 21:06:07 +0000 |
commit | 5f5bc4abd31eb29c929053bbd30903fb12d69669 (patch) | |
tree | 55e143f7eaf853d6966c717a342092b0d1e97fdf | |
parent | ce4757b8e7df547f269b90e5d500714952e8f0b2 (diff) | |
download | bcm5719-llvm-5f5bc4abd31eb29c929053bbd30903fb12d69669.tar.gz bcm5719-llvm-5f5bc4abd31eb29c929053bbd30903fb12d69669.zip |
[asan] trying to fix Mac build
llvm-svn: 224370
-rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_mac.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc b/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc index dbcf83da3d8..d0b0937ce74 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc @@ -326,7 +326,7 @@ uptr GetRSS() { } void *internal_start_thread(void (*func)(void *arg), void *arg) { return 0; } -void internal_join_thread(void *th) { return 0; } +void internal_join_thread(void *th) { } } // namespace __sanitizer |