hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/tools/include/linux/compiler-gcc.h
....@@ -6,9 +6,11 @@
66 /*
77 * Common definitions for all gcc versions go here.
88 */
9
+#ifndef GCC_VERSION
910 #define GCC_VERSION (__GNUC__ * 10000 \
1011 + __GNUC_MINOR__ * 100 \
1112 + __GNUC_PATCHLEVEL__)
13
+#endif
1214
1315 #if GCC_VERSION >= 70000 && !defined(__CHECKER__)
1416 # define __fallthrough __attribute__ ((fallthrough))