[gdb/testsuite] Reduce errors after gdb exit in default_gdb_start
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / async.c
CommitLineData
104c1213
JM
1
2
104c1213
JM
3int
4foo (void)
104c1213 5{
f48088c7
PA
6 int y;
7 volatile int x;
104c1213 8
e5e01dbf 9 x = 5; x = 5; x = 5;
104c1213
JM
10 y = 3;
11
12 return x + y;
13}
14
a59add0c
AA
15int
16baz (void)
17{
18 return 5;
19}
20
104c1213
JM
21int
22main (void)
104c1213
JM
23{
24 int y, z;
25
26 y = 2;
27 z = 9;
28 y = foo ();
29 z = y;
e2f6c966 30 y = y + 2; /* jump here */
104c1213 31 y = baz ();
e2f6c966 32 return 0; /* until here */
104c1213 33}
This page took 2.001343 seconds and 4 git commands to generate.