[compiler-rt] r215708 - [ASan/Win] Remove a hack that seems not to be required with VS2013 anymore

Timur Iskhodzhanov timurrrr at google.com
Fri Aug 15 06:45:23 PDT 2014


Author: timurrrr
Date: Fri Aug 15 08:45:23 2014
New Revision: 215708

URL: http://llvm.org/viewvc/llvm-project?rev=215708&view=rev
Log:
[ASan/Win] Remove a hack that seems not to be required with VS2013 anymore

Modified:
    compiler-rt/trunk/lib/sanitizer_common/sanitizer_printf.cc

Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_printf.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_printf.cc?rev=215708&r1=215707&r2=215708&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_printf.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_printf.cc Fri Aug 15 08:45:23 2014
@@ -22,10 +22,6 @@
 #include <stdio.h>
 #include <stdarg.h>
 
-#if SANITIZER_WINDOWS && !defined(va_copy)
-# define va_copy(dst, src) ((dst) = (src))
-#endif
-
 namespace __sanitizer {
 
 StaticSpinMutex CommonSanitizerReportMutex;





More information about the llvm-commits mailing list