aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/process/reverse-continue/main.c
blob: ccec2bb27658d82124a27f3ac5f45e81bb6722be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
static void start_recording() {}

static void trigger_breakpoint() {}

static void stop_recording() {}

int main() {
  start_recording();
  trigger_breakpoint();
  stop_recording();
  return 0;
}