[PATCH 7/57][Arm][GAS] Add support for MVE instructions: vstr/vldr
[binutils-gdb.git] / gdb / testsuite / gdb.base / async.c
blob9148b1913d37880ab3e370cc479e9681a6c6034d
3 int
4 foo (void)
6 int y;
7 volatile int x;
9 x = 5; x = 5; x = 5;
10 y = 3;
12 return x + y;
15 int
16 baz (void)
18 return 5;
21 int
22 main (void)
24 int y, z;
26 y = 2;
27 z = 9;
28 y = foo ();
29 z = y;
30 y = y + 2; /* jump here */
31 y = baz ();
32 return 0; /* until here */