old-cross-binutils/gdb/testsuite/gdb.mi/until.c
Andrew Cagney fb40c20903 Add mi/ and testsuite/gdb.mi/ subdirectories.
Add --enable-gdbmi option to configury.
Add mi rules to Makefile.in
Add mi conditional output to event-top.c infrun.c main.c top.c.
Add -i=mi option.
2000-02-23 00:25:43 +00:00

26 lines
201 B
C

foo (void)
{
int i, x, y, z;
x = 0;
y = 1;
i = 0;
while (i < 2)
i++;
x = i;
y = 2 * x;
z = x + y;
y = x + z;
x = 9;
y = 10;
}
main ()
{
int a = 1;
foo ();
a += 2;
return 0;
}