blob: 869a88c911f5e4c0df780a91adb6190fe9ce9390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
Purpose of this test: to test breakpoints on consecutive instructions.
*/
int a[7] = {1, 2, 3, 4, 5, 6, 7};
/* assert: first line of foo has more than one instruction. */
int foo ()
{
return a[0] + a[1] + a[2] + a[3] + a[4] + a[5] + a[6];
}
int
main ()
{
foo ();
return 0;
}
|