summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/main.c
blob: a37f05e0290a9ee3762f68b727d0483ffcdbb256 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>

void
call_me()
{
  printf("Set another breakpoint here.\n");
}

int
main()
{
  int change_me = 0;
  for (int i = 0; i < 2; i++)
  {
    printf ("Set a breakpoint here: %d with: %d.\n", i, change_me);
  }
  call_me();
  return 0;
}