Files
linux-apfs/include/linux/compiler-gcc3.h
T

24 lines
635 B
C
Raw Normal View History

#ifndef __LINUX_COMPILER_H
#error "Please don't include <linux/compiler-gcc3.h> directly, include <linux/compiler.h> instead."
#endif
2005-04-16 15:20:36 -07:00
2013-02-21 16:41:41 -08:00
#if GCC_VERSION < 30200
2009-01-02 18:53:14 +01:00
# error Sorry, your compiler is too old - please upgrade it.
#endif
2013-02-21 16:41:41 -08:00
#if GCC_VERSION >= 30300
# define __used __attribute__((__used__))
2005-04-16 15:20:36 -07:00
#else
# define __used __attribute__((__unused__))
2005-04-16 15:20:36 -07:00
#endif
2013-02-21 16:41:41 -08:00
#if GCC_VERSION >= 30400
2005-04-16 15:20:36 -07:00
#define __must_check __attribute__((warn_unused_result))
#endif
2009-06-17 16:28:08 -07:00
#ifdef CONFIG_GCOV_KERNEL
2013-02-21 16:41:41 -08:00
# if GCC_VERSION < 30400
2009-06-17 16:28:08 -07:00
# error "GCOV profiling support for gcc versions below 3.4 not included"
# endif /* __GNUC_MINOR__ */
#endif /* CONFIG_GCOV_KERNEL */