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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
lldb
/
test
/
API
/
functionalities
/
exec
/
main.c
blob
cd4d5f1068fa29ac6494ad2dc62becfabff2eb20
1
#include <stdio.h>
2
#include <stdlib.h>
3
#include <unistd.h>
4
5
int
main
(
int
argc
,
char const
**
argv
) {
6
// Set breakpoint 1 here
7
execl
(
"secondprog"
,
"secondprog"
,
NULL
);
8
perror
(
"execve"
);
9
abort
();
10
}