aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/lldbutil/process/main.cpp
blob: f31003609587ca5543dc167f1895360c04bfa4cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
static int foo(int x, int y) {
  return x + y; // BREAK HERE
}

static int bar(int x) {
  return foo(x + 1, x * 2);
}

int main (int argc, char const *argv[])
{
    return bar(argc + 2);
}