[PATCH 7/57][Arm][GAS] Add support for MVE instructions: vstr/vldr
[binutils-gdb.git] / gdb / testsuite / gdb.base / consecutive.c
blob7d0cea942ad3419829b1ecb01d4843c12114d4e6
1 /*
2 Purpose of this test: to test breakpoints on consecutive instructions.
3 */
5 int a[7] = {1, 2, 3, 4, 5, 6, 7};
7 /* assert: first line of foo has more than one instruction. */
8 int foo ()
10 return a[0] + a[1] + a[2] + a[3] + a[4] + a[5] + a[6];
13 main()
15 foo ();