d26b3e2d51
No real way around using -fsanitize-blacklist, but we can change the rest. Bug: 1101491 Change-Id: I3ec84bd2911b6cf6e77eac1c9d565a398bfcde77 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/305754 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Klein <mtklein@google.com>
16 lines
599 B
Plaintext
16 lines
599 B
Plaintext
#if 0
|
|
|
|
# This file must be a no-op C #include header, and a valid *SAN compile-time suppression file.
|
|
# Luckily, anything starting with # is a comment to *SAN compile-time suppression files,
|
|
# and anything inside #if 0 is ignored by C. Yippee!
|
|
#
|
|
# If you want to type '*', type '.*' instead. Don't make C comments!
|
|
|
|
# libpng and zlib both dereference under-aligned pointers.
|
|
# TODO: it'd be nice to tag these as [alignment] only but our Mac toolchain can't yet.
|
|
# [alignment]
|
|
src:.*third_party/externals/libpng/intel/filter_sse2_intrinsics.c
|
|
src:.*third_party/externals/zlib/deflate.c
|
|
|
|
#endif
|