[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / compiler-rt / test / profile / Inputs / instrprof-gcov-fork.c
blob818c459c50ddc260f2ede646e810bd34b7e8db99
1 #include <unistd.h>
3 void func1() {}
4 void func2() {}
6 int main(void)
8 func1();
10 fork();
12 func2();
14 return 0;