1#define COUNT 101
2
3static volatile int aaa;
4
5int main(int argc, char *argv[]) {
6 for (int i = 0; i < COUNT; i++)
7 aaa++;
8 return 0;
9}
10

source code of compiler-rt/test/profile/Inputs/instrprof-gcov-parallel.target.c