diff options
author | 2018-04-04 22:13:35 +0200 | |
---|---|---|
committer | 2018-04-04 22:13:35 +0200 | |
commit | fe5f31a8010a0cb13e72cfb72905fefa2a41730c (patch) | |
tree | 324d237e47092cc66b13c7421dbda6ea6961c6b4 /include/linux/compiler-gcc.h | |
parent | Merge tag 'nand/for-4.17' of git://git.infradead.org/linux-mtd into mtd/next (diff) | |
parent | Linux 4.16-rc2 (diff) | |
download | wireguard-linux-fe5f31a8010a0cb13e72cfb72905fefa2a41730c.tar.xz wireguard-linux-fe5f31a8010a0cb13e72cfb72905fefa2a41730c.zip |
Merge tag 'v4.16-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into mtd/next
Backmerge v4.16-rc2 into mtd/next to resolve a conflict between Linus'
master branch and nand/for-4.17.
Diffstat (limited to '')
-rw-r--r-- | include/linux/compiler-gcc.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/linux/compiler-gcc.h b/include/linux/compiler-gcc.h index 631354acfa72..73bc63e0a1c4 100644 --- a/include/linux/compiler-gcc.h +++ b/include/linux/compiler-gcc.h @@ -167,8 +167,6 @@ #if GCC_VERSION >= 40100 # define __compiletime_object_size(obj) __builtin_object_size(obj, 0) - -#define __nostackprotector __attribute__((__optimize__("no-stack-protector"))) #endif #if GCC_VERSION >= 40300 @@ -196,6 +194,11 @@ #endif /* __CHECKER__ */ #endif /* GCC_VERSION >= 40300 */ +#if GCC_VERSION >= 40400 +#define __optimize(level) __attribute__((__optimize__(level))) +#define __nostackprotector __optimize("no-stack-protector") +#endif /* GCC_VERSION >= 40400 */ + #if GCC_VERSION >= 40500 #ifndef __CHECKER__ |