diff options
author | Kees Cook <keescook@chromium.org> | 2017-04-05 12:49:19 -0400 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2017-05-28 13:23:03 -0400 |
commit | 0aa5e49c6845ecd82531341085f367767c9f419a (patch) | |
tree | dd7b9d4a2bad900e26a42810304ae571df61183a /include/linux/compiler-gcc.h | |
parent | 1132e1e448ce51e3b51fc7afdf661633abc4f202 (diff) |
compiler: Add __designated_init annotation
This allows structure annotations for requiring designated initialization
in GCC 5.1.0 and later:
https://gcc.gnu.org/onlinedocs/gcc/Designated-Inits.html
The structure randomization layout plugin will be using this to help
identify structures that need this form of initialization.
Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'include/linux/compiler-gcc.h')
-rw-r--r-- | include/linux/compiler-gcc.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/compiler-gcc.h b/include/linux/compiler-gcc.h index 0efef9cf014f..386caf6771ed 100644 --- a/include/linux/compiler-gcc.h +++ b/include/linux/compiler-gcc.h | |||
@@ -294,6 +294,14 @@ | |||
294 | #define __no_sanitize_address __attribute__((no_sanitize_address)) | 294 | #define __no_sanitize_address __attribute__((no_sanitize_address)) |
295 | #endif | 295 | #endif |
296 | 296 | ||
297 | #if GCC_VERSION >= 50100 | ||
298 | /* | ||
299 | * Mark structures as requiring designated initializers. | ||
300 | * https://gcc.gnu.org/onlinedocs/gcc/Designated-Inits.html | ||
301 | */ | ||
302 | #define __designated_init __attribute__((designated_init)) | ||
303 | #endif | ||
304 | |||
297 | #endif /* gcc version >= 40000 specific checks */ | 305 | #endif /* gcc version >= 40000 specific checks */ |
298 | 306 | ||
299 | #if !defined(__noclone) | 307 | #if !defined(__noclone) |