[compiler-rt] r224366 - Fix Win build after r224353: void function returning zero.
Hans Wennborg
hans at hanshq.net
Tue Dec 16 12:46:05 PST 2014
Author: hans
Date: Tue Dec 16 14:46:05 2014
New Revision: 224366
URL: http://llvm.org/viewvc/llvm-project?rev=224366&view=rev
Log:
Fix Win build after r224353: void function returning zero.
Modified:
compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc
Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc?rev=224366&r1=224365&r2=224366&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc Tue Dec 16 14:46:05 2014
@@ -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;
More information about the llvm-commits
mailing list