[PATCH] D43502: Msan, fixing DTLS_on_tls_get_addr signature empty implementation

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 20 20:19:04 PST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL325664: Msan, fixing DTLS_on_tls_get_addr signature empty implementation (authored by kamil, committed by ).
Herald added a subscriber: delcypher.

Changed prior to commit:
  https://reviews.llvm.org/D43502?vs=135020&id=135192#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D43502

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


Index: compiler-rt/trunk/lib/sanitizer_common/sanitizer_tls_get_addr.cc
===================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_tls_get_addr.cc
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_tls_get_addr.cc
@@ -142,7 +142,8 @@
 
 #else
 void DTLS_on_libc_memalign(void *ptr, uptr size) {}
-DTLS::DTV *DTLS_on_tls_get_addr(void *arg, void *res) { return 0; }
+DTLS::DTV *DTLS_on_tls_get_addr(void *arg, void *res,
+  unsigned long, unsigned long) { return 0; }
 DTLS *DTLS_Get() { return 0; }
 void DTLS_Destroy() {}
 bool DTLSInDestruction(DTLS *dtls) {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D43502.135192.patch
Type: text/x-patch
Size: 625 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180221/0d026874/attachment.bin>


More information about the llvm-commits mailing list