1 /* 2 * This code provides functions to handle gcc's profiling data format 3 * introduced with gcc 7. 4 * 5 * For a better understanding, refer to gcc source: 6 * gcc/gcov-io.h 7 * libgcc/libgcov.c 8 * 9 * Uses gcc-internal data definitions. 10 */ 11 12 #include "gcov.h" 13 14 #if GCC_VERSION < 70000 15 #error "Wrong version of GCC used to compile gcov" 16 #endif 17 18 #define GCOV_COUNTERS 9 19 20 #include "gcc_4_7.c" 21 22 /* 23 * Local variables: 24 * mode: C 25 * c-file-style: "BSD" 26 * c-basic-offset: 4 27 * tab-width: 4 28 * indent-tabs-mode: nil 29 * End: 30 */ 31