mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
Merge branch 'x86/urgent' into x86/asm, to pick up fixes
Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
commit
1d0f49e140
1095 changed files with 23492 additions and 21918 deletions
|
@ -224,6 +224,7 @@
|
|||
#endif /* GCC_VERSION >= 40500 */
|
||||
|
||||
#if GCC_VERSION >= 40600
|
||||
|
||||
/*
|
||||
* When used with Link Time Optimization, gcc can optimize away C functions or
|
||||
* variables which are referenced only from assembly code. __visible tells the
|
||||
|
@ -231,7 +232,17 @@
|
|||
* this.
|
||||
*/
|
||||
#define __visible __attribute__((externally_visible))
|
||||
#endif
|
||||
|
||||
/*
|
||||
* RANDSTRUCT_PLUGIN wants to use an anonymous struct, but it is only
|
||||
* possible since GCC 4.6. To provide as much build testing coverage
|
||||
* as possible, this is used for all GCC 4.6+ builds, and not just on
|
||||
* RANDSTRUCT_PLUGIN builds.
|
||||
*/
|
||||
#define randomized_struct_fields_start struct {
|
||||
#define randomized_struct_fields_end } __randomize_layout;
|
||||
|
||||
#endif /* GCC_VERSION >= 40600 */
|
||||
|
||||
|
||||
#if GCC_VERSION >= 40900 && !defined(__CHECKER__)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue