From c397aff09103fc6eaf528d2c43c79df6c82b77ff Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Fri, 13 Jan 2017 19:25:58 +0000 Subject: [PATCH] Remove SANITIZER_LINUX ifdefs Somehow this causes lots of test failures on Windows. These appear to have been accidentally added back in r291736. llvm-svn: 291947 --- compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc b/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc index 5945ebbe90b2..ebdee33d7d5b 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc @@ -954,9 +954,7 @@ SANITIZER_INTERFACE_ATTRIBUTE void __sanitizer_cov_init() { } SANITIZER_INTERFACE_ATTRIBUTE void __sanitizer_cov_dump() { coverage_data.DumpAll(); -#if SANITIZER_LINUX __sanitizer_dump_trace_pc_guard_coverage(); -#endif } SANITIZER_INTERFACE_ATTRIBUTE void __sanitizer_cov_module_init(s32 *guards, uptr npcs, u8 *counters,