repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git]
/
compiler-rt
/
test
/
profile
/
Inputs
/
instrprof-gcov-execvp.c
blob
f2e411c2a42e8475270695e65451f1295940061f
1
#include <unistd.h>
2
3
void
func1
() {}
4
void
func2
() {}
5
6
int
main
(
void
)
7
{
8
char
*
const
args
[] = {
"-l"
,
"-h"
, (
char
*)
0
};
9
10
func1
();
11
12
execvp
(
"ls"
,
args
);
13
14
func2
();
15
16
return
0
;
17
}