instrprof-gcov-__gcov_flush-multiple.c 257 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 int main(void) { __gcov_flush(); if (remove("instrprof-gcov-__gcov_flush-multiple.gcda") != 0) { return 1; } __gcov_flush(); __gcov_flush(); if (remove("instrprof-gcov-__gcov_flush-multiple.gcda") != 0) { return 1; } return 0; }