Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / python_api / value_var_update / main.c
blob9ffca5cbb9f83e47bf6436f152e360b90821fe56
1 struct complex_type {
2 struct { long l; } inner;
3 struct complex_type *complex_ptr;
4 };
6 int main() {
7 int i = 0;
8 struct complex_type c = { { 1L }, &c };
9 for (int j = 3; j < 20; j++)
11 c.inner.l += (i += j);
12 i = i - 1; // break here
14 return i;