[asan] Trying to make peace with the Windows bots, take 2
authorKuba Brecka <kuba.brecka@gmail.com>
Thu, 23 Jul 2015 11:53:58 +0000 (11:53 +0000)
committerKuba Brecka <kuba.brecka@gmail.com>
Thu, 23 Jul 2015 11:53:58 +0000 (11:53 +0000)
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

index 8ac816b..3c2476c 100644 (file)
@@ -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)