aboutsummaryrefslogtreecommitdiff
path: root/gdb/bar.c
blob: 59e559f1532f5e3bddbc121e41c5a940f96d0e8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
main() {
	int i;

	for (i = 0; i >= 0; i++)
		bar();
}

bar()
{
	int i;

	i = 10;
}