blob: ecd621fd27d2415376ea1d123b353edfd2ee7843 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Never include this file directly. Include <linux/compiler.h> instead. */
2
3/* These definitions are for GCC v3.x. */
4#include <linux/compiler-gcc.h>
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#if __GNUC_MINOR__ >= 3
7# define __attribute_used__ __attribute__((__used__))
8#else
9# define __attribute_used__ __attribute__((__unused__))
10#endif
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#if __GNUC_MINOR__ >= 4
13#define __must_check __attribute__((warn_unused_result))
14#endif
15
Borislav Petkov94909912007-05-06 14:49:17 -070016/*
17 * A trick to suppress uninitialized variable warning without generating any
18 * code
19 */
20#define uninitialized_var(x) x = x
21
Ingo Molnar40fc55c2006-01-14 13:21:28 -080022#define __always_inline inline __attribute__((always_inline))