[gdb/testsuite] Fix re-read FAILs with -readnow
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / consecutive.c
CommitLineData
c2b8fa57
MS
1/*
2 Purpose of this test: to test breakpoints on consecutive instructions.
3*/
4
5int a[7] = {1, 2, 3, 4, 5, 6, 7};
6
7/* assert: first line of foo has more than one instruction. */
8int foo ()
9{
10 return a[0] + a[1] + a[2] + a[3] + a[4] + a[5] + a[6];
11}
12
dc3a371e
PA
13int
14main ()
c2b8fa57 15{
c2b8fa57 16 foo ();
dc3a371e 17 return 0;
c2b8fa57 18}
This page took 2.034355 seconds and 4 git commands to generate.