Automatic date update in version.in
[binutils-gdb/blckswan.git] / gdb / testsuite / gdb.mi / until.c
blob83beea08f41203696f7b9ccd00fb252d8c137a2e
1 void
2 foo (void)
4 int i, x, y, z;
6 x = 0;
7 y = 1;
8 i = 0;
10 while (i < 2)
11 i++; /* in-loop */
13 x = i; /* after-loop */
14 y = 2 * x;
15 z = x + y;
16 y = x + z; /* until-here */
17 x = 9;
18 y = 10; /* until-there */
21 int
22 main ()
24 int a = 1;
25 foo ();
26 a += 2;
27 return 0; /* at-return */