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