[compiler-rt] r243007 - [asan] Trying to make peace with the Windows bots, take 2

Kuba Brecka kuba.brecka at gmail.com
Thu Jul 23 04:53:58 PDT 2015


Author: kuba.brecka
Date: Thu Jul 23 06:53:58 2015
New Revision: 243007

URL: http://llvm.org/viewvc/llvm-project?rev=243007&view=rev
Log:
[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


Modified:
    compiler-rt/trunk/lib/asan/asan_win_dll_thunk.cc

Modified: compiler-rt/trunk/lib/asan/asan_win_dll_thunk.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_win_dll_thunk.cc?rev=243007&r1=243006&r2=243007&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_win_dll_thunk.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_win_dll_thunk.cc Thu Jul 23 06:53:58 2015
@@ -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)
 





More information about the llvm-commits mailing list