1 2 3 4 5 6 7 8 9 10 11 12 13
int main(void) { int i = 22; __gcov_flush(); i = 42; asm("int $3"); i = 84; return 0; }