summaryrefslogtreecommitdiffstats
path: root/lldb/test/python_api/value_var_update/main.c
blob: 115bc10a372dd3cf50dbeb0391fe8d0ab7c0cee0 (plain)
1
2
3
4
5
6
7
8
9
int main() {
    int i = 0;
    for (int j = 3; j < 20; j++)
    {
        i += j;
        i = i - 1; // break here
    }
    return i;
}
OpenPOWER on IntegriCloud