From 94da66a92f06a12cc4958d185695a1e5ad264a5c Mon Sep 17 00:00:00 2001 From: Kuba Brecka Date: Thu, 23 Jul 2015 11:53:58 +0000 Subject: [PATCH] [asan] Trying to make peace with the Windows bots, take 2 There are some test failures after r243003 and r243004 ("Rename the ABI versioning symbol to '__asan_version_mismatch_check' instead abusing '__asan_init'"). See http://reviews.llvm.org/D11004 llvm-svn: 243007 --- compiler-rt/lib/asan/asan_win_dll_thunk.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compiler-rt/lib/asan/asan_win_dll_thunk.cc b/compiler-rt/lib/asan/asan_win_dll_thunk.cc index 8ac816b..3c2476c3 100644 --- a/compiler-rt/lib/asan/asan_win_dll_thunk.cc +++ b/compiler-rt/lib/asan/asan_win_dll_thunk.cc @@ -219,7 +219,9 @@ extern "C" { } } -INTERFACE_FUNCTION(__asan_version_mismatch_check) +extern "C" void __asan_version_mismatch_check() { + // Do nothing. +} INTERFACE_FUNCTION(__asan_handle_no_return) -- 2.7.4