diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-02-09 17:24:09 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-02-09 17:24:09 -0500 |
commit | 185c045c245f46485ad8bbd8cc1100e986ff3f13 (patch) | |
tree | fc08cd474bf6c7c9b0c077a069255d04b8804fe4 /include | |
parent | bfc734b24671b2639218ae2ef53af91dfd30b6c9 (diff) |
x86, core: remove CONFIG_FORCED_INLINING
Other than the defconfigs, remove the entry in compiler-gcc4.h,
Kconfig.debug and feature-removal-schedule.txt.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/compiler-gcc4.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/linux/compiler-gcc4.h b/include/linux/compiler-gcc4.h index 0ab3a3232330..974f5b7bb205 100644 --- a/include/linux/compiler-gcc4.h +++ b/include/linux/compiler-gcc4.h | |||
@@ -5,15 +5,6 @@ | |||
5 | /* These definitions are for GCC v4.x. */ | 5 | /* These definitions are for GCC v4.x. */ |
6 | #include <linux/compiler-gcc.h> | 6 | #include <linux/compiler-gcc.h> |
7 | 7 | ||
8 | #ifdef CONFIG_FORCED_INLINING | ||
9 | # undef inline | ||
10 | # undef __inline__ | ||
11 | # undef __inline | ||
12 | # define inline inline __attribute__((always_inline)) | ||
13 | # define __inline__ __inline__ __attribute__((always_inline)) | ||
14 | # define __inline __inline __attribute__((always_inline)) | ||
15 | #endif | ||
16 | |||
17 | #define __used __attribute__((__used__)) | 8 | #define __used __attribute__((__used__)) |
18 | #define __must_check __attribute__((warn_unused_result)) | 9 | #define __must_check __attribute__((warn_unused_result)) |
19 | #define __compiler_offsetof(a,b) __builtin_offsetof(a,b) | 10 | #define __compiler_offsetof(a,b) __builtin_offsetof(a,b) |