* gdb.mi/var-cmd.c: Give long_array in _struct_decl 12 elements.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / until.c
CommitLineData
fb40c209
AC
1foo (void)
2{
3 int i, x, y, z;
4
5 x = 0;
6 y = 1;
7 i = 0;
8
9 while (i < 2)
10 i++;
11
12 x = i;
13 y = 2 * x;
14 z = x + y;
15 y = x + z;
16 x = 9;
17 y = 10;
18}
19
20main ()
21{
22 int a = 1;
23 foo ();
24 a += 2;
25 return 0;
26}
This page took 0.542444 seconds and 4 git commands to generate.