[compiler-rt] r257978 - Attempt to fix sanitizer-windows bot.

Peter Collingbourne via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 15 17:15:20 PST 2016


Author: pcc
Date: Fri Jan 15 19:15:19 2016
New Revision: 257978

URL: http://llvm.org/viewvc/llvm-project?rev=257978&view=rev
Log:
Attempt to fix sanitizer-windows bot.

Modified:
    compiler-rt/trunk/lib/sanitizer_common/sanitizer_internal_defs.h

Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_internal_defs.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_internal_defs.h?rev=257978&r1=257977&r2=257978&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_internal_defs.h (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_internal_defs.h Fri Jan 15 19:15:19 2016
@@ -176,7 +176,9 @@ typedef ALIGNED(1) s32 us32;
 typedef ALIGNED(1) s64 us64;
 
 #if SANITIZER_WINDOWS
+}  // namespace __sanitizer
 typedef unsigned long DWORD;  // NOLINT
+namespace __sanitizer {
 typedef DWORD thread_return_t;
 # define THREAD_CALLING_CONV __stdcall
 #else  // _WIN32




More information about the llvm-commits mailing list