diff options
| author | Maxim Ostapenko <chefmax7@gmail.com> | 2017-04-06 07:53:26 +0000 |
|---|---|---|
| committer | Maxim Ostapenko <chefmax7@gmail.com> | 2017-04-06 07:53:26 +0000 |
| commit | 18afec1ba6441878a1b1894314bcd3fd9a2bd038 (patch) | |
| tree | 5b5e13d1595ebf4e77842edd01b00b2d3e0b2fb7 | |
| parent | fe863a65105c75cbb16c91500958f9b97f2d7114 (diff) | |
| download | bcm5719-llvm-18afec1ba6441878a1b1894314bcd3fd9a2bd038.tar.gz bcm5719-llvm-18afec1ba6441878a1b1894314bcd3fd9a2bd038.zip | |
Try to fix windows buildbot after r299630
llvm-svn: 299631
| -rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc b/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc index aa146d01f92..a45b085c2a8 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc @@ -145,7 +145,7 @@ void DTLS_on_libc_memalign(void *ptr, uptr size) {} 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 |

