aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/compiler-gcc.h
diff options
context:
space:
mode:
authorLi Zefan <lizf@cn.fujitsu.com>2009-11-02 08:50:52 +0800
committerIngo Molnar <mingo@elte.hu>2009-11-02 15:47:54 +0100
commit7b2a35132ad0a70902dcd2844c27ed64cda0ce9b (patch)
treef800a7d536d7850ac5cfeca5eb576f9af568751d /include/linux/compiler-gcc.h
parenttracing: Exit with error if a weak function is used in recordmcount.pl (diff)
downloadlinux-dev-7b2a35132ad0a70902dcd2844c27ed64cda0ce9b.tar.xz
linux-dev-7b2a35132ad0a70902dcd2844c27ed64cda0ce9b.zip
compiler: Introduce __always_unused
I wrote some code which is used as compile-time checker, and the code should be elided after compile. So I need to annotate the code as "always unused", compared to "maybe unused". Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> LKML-Reference: <4AEE2CEC.8040206@cn.fujitsu.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/compiler-gcc.h')
-rw-r--r--include/linux/compiler-gcc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/compiler-gcc.h b/include/linux/compiler-gcc.h
index a3ed7cb8ca34..73dcf804bc94 100644
--- a/include/linux/compiler-gcc.h
+++ b/include/linux/compiler-gcc.h
@@ -79,6 +79,7 @@
#define noinline __attribute__((noinline))
#define __attribute_const__ __attribute__((__const__))
#define __maybe_unused __attribute__((unused))
+#define __always_unused __attribute__((unused))
#define __gcc_header(x) #x
#define _gcc_header(x) __gcc_header(linux/compiler-gcc##x.h)