]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/profile/Inputs/instrprof-gcov-__gcov_flush-multiple.c
Vendor import of compiler-rt trunk r351319 (just before the release_80
[FreeBSD/FreeBSD.git] / test / profile / Inputs / instrprof-gcov-__gcov_flush-multiple.c
1 int main(void) {
2   __gcov_flush();
3
4   if (remove("instrprof-gcov-__gcov_flush-multiple.gcda") != 0) {
5     return 1;
6   }
7
8   __gcov_flush();
9   __gcov_flush();
10
11   if (remove("instrprof-gcov-__gcov_flush-multiple.gcda") != 0) {
12     return 1;
13   }
14
15   return 0;
16 }