compiler-gcc3.h 635 字节
Newer Older
S
Scott McNutt 已提交
1 2 3 4
#ifndef __LINUX_COMPILER_H
#error "Please don't include <linux/compiler-gcc3.h> directly, include <linux/compiler.h> instead."
#endif

5 6 7 8 9
#if GCC_VERSION < 30200
# error Sorry, your compiler is too old - please upgrade it.
#endif

#if GCC_VERSION >= 30300
S
Scott McNutt 已提交
10 11 12 13 14
# define __used			__attribute__((__used__))
#else
# define __used			__attribute__((__unused__))
#endif

15
#if GCC_VERSION >= 30400
S
Scott McNutt 已提交
16 17 18
#define __must_check		__attribute__((warn_unused_result))
#endif

19 20 21 22 23
#ifdef CONFIG_GCOV_KERNEL
# if GCC_VERSION < 30400
#   error "GCOV profiling support for gcc versions below 3.4 not included"
# endif /* __GNUC_MINOR__ */
#endif /* CONFIG_GCOV_KERNEL */