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
|
|
|
|
2013-02-22 08:41:41 +08:00
|
|
|
#if GCC_VERSION < 30200
|
2009-01-03 01:53:14 +08:00
|
|
|
# error Sorry, your compiler is too old - please upgrade it.
|
|
|
|
#endif
|
|
|
|
|
2013-02-22 08:41:41 +08:00
|
|
|
#if GCC_VERSION >= 30300
|
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
|
|
|
|
|
2013-02-22 08:41:41 +08:00
|
|
|
#if GCC_VERSION >= 30400
|
2005-04-17 06:20:36 +08:00
|
|
|
#define __must_check __attribute__((warn_unused_result))
|
|
|
|
#endif
|
|
|
|
|
2009-06-18 07:28:08 +08:00
|
|
|
#ifdef CONFIG_GCOV_KERNEL
|
2013-02-22 08:41:41 +08:00
|
|
|
# if GCC_VERSION < 30400
|
2009-06-18 07:28:08 +08:00
|
|
|
# error "GCOV profiling support for gcc versions below 3.4 not included"
|
|
|
|
# endif /* __GNUC_MINOR__ */
|
|
|
|
#endif /* CONFIG_GCOV_KERNEL */
|