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