From: Martin Liska Date: Wed, 31 Oct 2018 11:17:10 +0000 (+0100) Subject: New local GCC patch for CAN_SANITIZE_UB ifdef. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c244886cc4a87f14f36bf7b2b79adb9cc2dfefce;p=gcc.git New local GCC patch for CAN_SANITIZE_UB ifdef. 2018-10-31 Martin Liska * ubsan/ubsan_platform.h: Add ifndef as we define it with -DCAN_SANITIZE_UB CFLAGS. From-SVN: r265669 --- diff --git a/libsanitizer/ChangeLog b/libsanitizer/ChangeLog index 4a933020bbd..37fe4689725 100644 --- a/libsanitizer/ChangeLog +++ b/libsanitizer/ChangeLog @@ -1,3 +1,8 @@ +2018-10-31 Martin Liska + + * ubsan/ubsan_platform.h: Add ifndef as we define it with + -DCAN_SANITIZE_UB CFLAGS. + 2018-10-31 Martin Liska * asan/asan_mapping.h: Revert shadow memory offset to 1 << 41. diff --git a/libsanitizer/ubsan/ubsan_platform.h b/libsanitizer/ubsan/ubsan_platform.h index 75d06646ce8..67c4e079724 100644 --- a/libsanitizer/ubsan/ubsan_platform.h +++ b/libsanitizer/ubsan/ubsan_platform.h @@ -11,6 +11,7 @@ #ifndef UBSAN_PLATFORM_H #define UBSAN_PLATFORM_H +#ifndef CAN_SANITIZE_UB // Other platforms should be easy to add, and probably work as-is. #if defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__) || \ defined(__NetBSD__) || defined(__OpenBSD__) || \ @@ -20,5 +21,6 @@ #else # define CAN_SANITIZE_UB 0 #endif +#endif //CAN_SANITIZE_UB #endif