From: Kuba Brecka Date: Thu, 23 Jul 2015 11:53:58 +0000 (+0000) Subject: [asan] Trying to make peace with the Windows bots, take 2 X-Git-Tag: studio-1.4~1789 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=94da66a92f06a12cc4958d185695a1e5ad264a5c;p=platform%2Fupstream%2Fllvm.git [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 --- 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)