Merge "dsp.h: add WEBP_UBSAN_IGNORE_UNDEF"

This commit is contained in:
James Zern
2016-05-11 06:21:45 +00:00
committed by Gerrit Code Review
2 changed files with 15 additions and 1 deletions

View File

@ -102,6 +102,19 @@ extern "C" {
#endif
#endif
// This macro prevents the undefined behavior sanitizer from reporting
// failures. This is only meant to silence unaligned loads on platforms that
// are known to support them.
#define WEBP_UBSAN_IGNORE_UNDEF
#if !defined(WEBP_FORCE_ALIGNED) && defined(__clang__) && \
defined(__has_attribute)
#if __has_attribute(no_sanitize)
#undef WEBP_UBSAN_IGNORE_UNDEF
#define WEBP_UBSAN_IGNORE_UNDEF \
__attribute__((no_sanitize("undefined")))
#endif
#endif
typedef enum {
kSSE2,
kSSE3,