[compiler-rt] r299631 - Try to fix windows buildbot after r299630

Maxim Ostapenko via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 6 00:53:27 PDT 2017


Author: chefmax
Date: Thu Apr  6 02:53:26 2017
New Revision: 299631

URL: http://llvm.org/viewvc/llvm-project?rev=299631&view=rev
Log:
Try to fix windows buildbot after r299630

Modified:
    compiler-rt/trunk/lib/sanitizer_common/sanitizer_tls_get_addr.cc

Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_tls_get_addr.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_tls_get_addr.cc?rev=299631&r1=299630&r2=299631&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_tls_get_addr.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_tls_get_addr.cc Thu Apr  6 02:53:26 2017
@@ -145,7 +145,7 @@ void DTLS_on_libc_memalign(void *ptr, up
 DTLS::DTV *DTLS_on_tls_get_addr(void *arg, void *res) { return 0; }
 DTLS *DTLS_Get() { return 0; }
 void DTLS_Destroy() {}
-bool DTLSInDestruction(DTLS *dtls) { UNREACHABLE(); }
+bool DTLSInDestruction(DTLS *dtls) { return true; }
 
 #endif  // SANITIZER_INTERCEPT_TLS_GET_ADDR
 




More information about the llvm-commits mailing list