<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Hi Alexander,<div class=""><br class=""></div><div class="">I will revert the commit until you have a fix. The bots have been broken for several hours now.</div><div class=""><br class=""></div><div class="">—Juergen</div><div class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Feb 4, 2015, at 8:57 AM, Alexander Potapenko <<a href="mailto:glider@google.com" class="">glider@google.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">Yeah, looking.</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">On Wed, Feb 4, 2015 at 7:56 PM, Juergen Ributzka <</span><a href="mailto:juergen@apple.com" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class="">juergen@apple.com</a><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">> wrote:</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><blockquote type="cite" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class="">Hi Alexander,<br class=""><br class="">this broke the build:<br class=""><a href="http://lab.llvm.org:8080/green/job/clang-stage1-configure-RA_build/4384/consoleFull#162078709849ba4694-19c4-4d7e-bec5-911270d8a58c" class="">http://lab.llvm.org:8080/green/job/clang-stage1-configure-RA_build/4384/consoleFull#162078709849ba4694-19c4-4d7e-bec5-911270d8a58c</a><br class=""><br class="">Could you please take a look?<br class=""><br class="">Thanks<br class=""><br class="">—Juergen<br class=""><br class="">On Feb 4, 2015, at 4:42 AM, Alexander Potapenko <glider@google.com> wrote:<br class=""><br class="">Author: glider<br class="">Date: Wed Feb  4 06:42:12 2015<br class="">New Revision: 228137<br class=""><br class="">URL: http://llvm.org/viewvc/llvm-project?rev=228137&view=rev<br class="">Log:<br class="">[ASan] Add the new __asan_mz_* symbols to asan_interface_internal.h<br class="">to fix the interface_symbols_darwin.c test.<br class=""><br class="">Modified:<br class="">  compiler-rt/trunk/lib/asan/asan_interface_internal.h<br class="">  compiler-rt/trunk/lib/asan/asan_malloc_mac.cc<br class=""><br class="">Modified: compiler-rt/trunk/lib/asan/asan_interface_internal.h<br class="">URL:<br class="">http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_interface_internal.h?rev=228137&r1=228136&r2=228137&view=diff<br class="">==============================================================================<br class="">--- compiler-rt/trunk/lib/asan/asan_interface_internal.h (original)<br class="">+++ compiler-rt/trunk/lib/asan/asan_interface_internal.h Wed Feb  4 06:42:12<br class="">2015<br class="">@@ -177,6 +177,24 @@ extern "C" {<br class=""> void __asan_poison_intra_object_redzone(uptr p, uptr size);<br class=""> SANITIZER_INTERFACE_ATTRIBUTE<br class=""> void __asan_unpoison_intra_object_redzone(uptr p, uptr size);<br class="">+#if SANITIZER_MAC<br class="">+  SANITIZER_INTERFACE_ATTRIBUTE<br class="">+  void * __asan_mz_calloc(void *zone, uptr nmemb, uptr size);<br class="">+  SANITIZER_INTERFACE_ATTRIBUTE<br class="">+  void __asan_mz_destroy(void* zone);<br class="">+  SANITIZER_INTERFACE_ATTRIBUTE<br class="">+  void __asan_mz_free(void *zone, void *ptr);<br class="">+  SANITIZER_INTERFACE_ATTRIBUTE<br class="">+  void * __asan_mz_malloc(void *zone, uptr size);<br class="">+  SANITIZER_INTERFACE_ATTRIBUTE<br class="">+  void * __asan_mz_memalign(void *zone, uptr align, uptr size);<br class="">+  SANITIZER_INTERFACE_ATTRIBUTE<br class="">+  void * __asan_mz_realloc(void *zone, void *ptr, uptr size);<br class="">+  SANITIZER_INTERFACE_ATTRIBUTE<br class="">+  uptr __asan_mz_size(void *zone, const void* ptr);<br class="">+  SANITIZER_INTERFACE_ATTRIBUTE<br class="">+  void * __asan_mz_valloc(void *zone, uptr size);<br class="">+#endif  // SANITIZER_MAC<br class="">}  // extern "C"<br class=""><br class="">#endif  // ASAN_INTERFACE_INTERNAL_H<br class=""><br class="">Modified: compiler-rt/trunk/lib/asan/asan_malloc_mac.cc<br class="">URL:<br class="">http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_malloc_mac.cc?rev=228137&r1=228136&r2=228137&view=diff<br class="">==============================================================================<br class="">--- compiler-rt/trunk/lib/asan/asan_malloc_mac.cc (original)<br class="">+++ compiler-rt/trunk/lib/asan/asan_malloc_mac.cc Wed Feb  4 06:42:12 2015<br class="">@@ -156,7 +156,7 @@ namespace {<br class="">// wrappers, as they are basically copied from there.<br class="">extern "C"<br class="">SANITIZER_INTERFACE_ATTRIBUTE<br class="">-size_t __asan_mz_size(malloc_zone_t* zone, const void* ptr) {<br class="">+size_t __asan_mz_size(malloc_zone_t *zone, const void* ptr) {<br class=""> return asan_mz_size(ptr);<br class="">}<br class=""><br class=""><br class=""><br class="">_______________________________________________<br class="">llvm-commits mailing list<br class="">llvm-commits@cs.uiuc.edu<br class="">http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits<br class=""><br class=""><br class=""></blockquote><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">--<span class="Apple-converted-space"> </span></span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">Alexander Potapenko</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">Software Engineer</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">Google Moscow</span></div></blockquote></div><br class=""></div></body></html>