2007-10-17 13:26:11 +07:00
|
|
|
#ifndef __LINUX_COMPILER_H
|
|
|
|
#error "Please don't include <linux/compiler-gcc3.h> directly, include <linux/compiler.h> instead."
|
|
|
|
#endif
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2009-01-03 00:53:14 +07:00
|
|
|
#if __GNUC_MINOR__ < 2
|
|
|
|
# error Sorry, your compiler is too old - please upgrade it.
|
|
|
|
#endif
|
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
#if __GNUC_MINOR__ >= 3
|
2007-05-09 16:35:27 +07:00
|
|
|
# define __used __attribute__((__used__))
|
2005-04-17 05:20:36 +07:00
|
|
|
#else
|
2007-05-09 16:35:27 +07:00
|
|
|
# define __used __attribute__((__unused__))
|
2005-04-17 05:20:36 +07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if __GNUC_MINOR__ >= 4
|
|
|
|
#define __must_check __attribute__((warn_unused_result))
|
|
|
|
#endif
|
|
|
|
|
2009-06-18 06:28:08 +07:00
|
|
|
#ifdef CONFIG_GCOV_KERNEL
|
|
|
|
# if __GNUC_MINOR__ < 4
|
|
|
|
# error "GCOV profiling support for gcc versions below 3.4 not included"
|
|
|
|
# endif /* __GNUC_MINOR__ */
|
|
|
|
#endif /* CONFIG_GCOV_KERNEL */
|
|
|
|
|
2007-05-07 04:49:17 +07:00
|
|
|
/*
|
|
|
|
* A trick to suppress uninitialized variable warning without generating any
|
|
|
|
* code
|
|
|
|
*/
|
|
|
|
#define uninitialized_var(x) x = x
|
|
|
|
|
2006-01-15 04:21:28 +07:00
|
|
|
#define __always_inline inline __attribute__((always_inline))
|