2007-10-17 14:26:11 +08:00
|
|
|
#ifndef __LINUX_COMPILER_H
|
|
|
|
#error "Please don't include <linux/compiler-gcc3.h> directly, include <linux/compiler.h> instead."
|
|
|
|
#endif
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* These definitions are for GCC v3.x. */
|
|
|
|
#include <linux/compiler-gcc.h>
|
|
|
|
|
|
|
|
#if __GNUC_MINOR__ >= 3
|
2007-05-09 17:35:27 +08:00
|
|
|
# define __used __attribute__((__used__))
|
2005-04-17 06:20:36 +08:00
|
|
|
#else
|
2007-05-09 17:35:27 +08:00
|
|
|
# define __used __attribute__((__unused__))
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if __GNUC_MINOR__ >= 4
|
|
|
|
#define __must_check __attribute__((warn_unused_result))
|
|
|
|
#endif
|
|
|
|
|
2007-05-07 05:49:17 +08:00
|
|
|
/*
|
|
|
|
* A trick to suppress uninitialized variable warning without generating any
|
|
|
|
* code
|
|
|
|
*/
|
|
|
|
#define uninitialized_var(x) x = x
|
|
|
|
|
2006-01-15 05:21:28 +08:00
|
|
|
#define __always_inline inline __attribute__((always_inline))
|