Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / functionalities / thread_plan / main.c
blob74654cb976a8863bd56f4ea297d2937d9a6e4416
1 #include <stdio.h>
3 void
4 call_me(int value) {
5 printf("called with %d\n", value); // Set another here.
8 int
9 main(int argc, char **argv)
11 call_me(argc); // Set a breakpoint here.
12 printf("This just spaces the two calls\n");
13 call_me(argc); // Run here to step over again.
14 printf("More spacing\n");
15 return 0; // Make sure we get here on last continue