[PATCH 7/57][Arm][GAS] Add support for MVE instructions: vstr/vldr
[binutils-gdb.git] / gdb / testsuite / gdb.base / advance.c
blobab86b0e56962853bdbc9012e8f6c7a445f72ddf7
2 static int x;
4 int foo (int a)
6 int b = a + 10;
7 return b;
10 int bar (int y)
12 int z = y + 20;
13 return z;
16 int func2 ()
18 x = 6;
21 void func()
23 x = x + 5;
24 func2 ();
27 int func3 ()
29 x = 4;
32 void marker1 ()
36 int
37 main ()
39 int result;
40 int b, c;
41 c = 5;
42 b = 3; /* advance this location */
44 func (c); /* stop here after leaving current frame */
45 marker1 (); /* stop here after leaving current frame */
46 func3 (); /* break here */
47 result = bar (b + foo (c));
48 return 0; /* advance malformed */