diff options
Diffstat (limited to 'include/linux/compiler-gcc.h')
| -rw-r--r-- | include/linux/compiler-gcc.h | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/include/linux/compiler-gcc.h b/include/linux/compiler-gcc.h index dfaa7b3e9ae9..8efb40e61d6e 100644 --- a/include/linux/compiler-gcc.h +++ b/include/linux/compiler-gcc.h @@ -237,12 +237,25 @@  #define KASAN_ABI_VERSION 3  #endif +#if GCC_VERSION >= 40902 +/* + * Tell the compiler that address safety instrumentation (KASAN) + * should not be applied to that function. + * Conflicts with inlining: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67368 + */ +#define __no_sanitize_address __attribute__((no_sanitize_address)) +#endif +  #endif	/* gcc version >= 40000 specific checks */  #if !defined(__noclone)  #define __noclone	/* not needed */  #endif +#if !defined(__no_sanitize_address) +#define __no_sanitize_address +#endif +  /*   * A trick to suppress uninitialized variable warning without generating any   * code | 
