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