diff options
| author | Timur Iskhodzhanov <timurrrr@google.com> | 2014-08-15 13:45:23 +0000 |
|---|---|---|
| committer | Timur Iskhodzhanov <timurrrr@google.com> | 2014-08-15 13:45:23 +0000 |
| commit | cc01fad1d971e83ec648a95ea59c7564e3c12944 (patch) | |
| tree | 7764a8c5deb6df4fe410645cfff71fb4ba3dc655 | |
| parent | 750f1cf9e47011f9a8760b5cef0a62aa29917122 (diff) | |
| download | bcm5719-llvm-cc01fad1d971e83ec648a95ea59c7564e3c12944.tar.gz bcm5719-llvm-cc01fad1d971e83ec648a95ea59c7564e3c12944.zip | |
[ASan/Win] Remove a hack that seems not to be required with VS2013 anymore
llvm-svn: 215708
| -rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_printf.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc b/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc index 8018131245b..fb049657116 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc @@ -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; |

