+2012-06-26 John Wiegley <johnw@newartisans.com>
+
+ * alloc.c (mark_memory): Do not check with -faddress-sanitizer
+ when building with Clang.
+
2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
* eval.c (Fapply): Allow calling it with a single argument.
static void
mark_memory (void *start, void *end)
+#ifdef __clang__
+ /* Do not allow -faddress-sanitizer to check this function, since it
+ crosses the function stack boundary, and thus would yield many
+ false positives. */
+ __attribute__((no_address_safety_analysis))
+#endif
{
void **pp;
int i;