aboutsummaryrefslogtreecommitdiff
path: root/sys/sys
diff options
context:
space:
mode:
authorRyan Libby <rlibby@FreeBSD.org>2019-12-21 02:43:20 +0000
committerRyan Libby <rlibby@FreeBSD.org>2019-12-21 02:43:20 +0000
commit4c235c008383701d66b8e15878a08c7bccf3664f (patch)
treefef72475e547bd94e4119452fe64886eaf8f0957 /sys/sys
parent0e47020f7f20c9ecf5d796497064f1ff124fbfa6 (diff)
downloadsrc-4c235c008383701d66b8e15878a08c7bccf3664f.tar.gz
src-4c235c008383701d66b8e15878a08c7bccf3664f.zip
gcc: quiet Wattribute for no_sanitize("address")
This is an unfortunate instance where the __has_attribute check does not function usefully. Gcc does have the attribute, but for gcc it only applies to functions, not variables, and trying to apply it to a variable generates Wattribute. So far we only apply the attribute to variables. Only enable the attribute for clang, for now. Reviewed by: Anton Rang <rang at acm.org> Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D22875
Notes
Notes: svn path=/head/; revision=355969
Diffstat (limited to 'sys/sys')
-rw-r--r--sys/sys/cdefs.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/sys/cdefs.h b/sys/sys/cdefs.h
index 42734b788b30..1eef6b78aba6 100644
--- a/sys/sys/cdefs.h
+++ b/sys/sys/cdefs.h
@@ -873,8 +873,12 @@
/* Function should not be analyzed. */
#define __no_lock_analysis __lock_annotate(no_thread_safety_analysis)
-/* Function or variable should not be sanitized, ie. by AddressSanitizer */
-#if __has_attribute(no_sanitize)
+/*
+ * Function or variable should not be sanitized, i.e. by AddressSanitizer.
+ * GCC has the nosanitize attribute, but as a function attribute only, and
+ * warns on use as a variable attribute.
+ */
+#if __has_attribute(no_sanitize) && defined(__clang__)
#define __nosanitizeaddress __attribute__((no_sanitize("address")))
#else
#define __nosanitizeaddress