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