diff options
author | Hans Wennborg <hans@hanshq.net> | 2014-12-16 20:46:05 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2014-12-16 20:46:05 +0000 |
commit | 7dd94570b0fd872c0642883498a8c7059bdc3c77 (patch) | |
tree | 3d86d8f88b8d979cd7d7dff5bfdc1a6ec462f3cd | |
parent | 6fce46baf65b6ae3f443e4ce56b327a3fd539879 (diff) | |
download | bcm5719-llvm-7dd94570b0fd872c0642883498a8c7059bdc3c77.tar.gz bcm5719-llvm-7dd94570b0fd872c0642883498a8c7059bdc3c77.zip |
Fix Win build after r224353: void function returning zero.
llvm-svn: 224366
-rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_win.cc b/compiler-rt/lib/sanitizer_common/sanitizer_win.cc index 93572ba8b00..6fb5ccc32bd 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_win.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_win.cc @@ -380,7 +380,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) { } // ---------------------- BlockingMutex ---------------- {{{1 const uptr LOCK_UNINITIALIZED = 0; |