Fix skip.exp test failure observed with gcc-9.2.0
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / mips_pro.c
1 /* Tests regarding examination of prologues. */
2
3 int
4 inner (int z)
5 {
6 return 2 * z;
7 }
8
9 int
10 middle (int x)
11 {
12 if (x == 0)
13 return inner (5);
14 else
15 return inner (6);
16 }
17
18 int
19 top (int y)
20 {
21 return middle (y + 1);
22 }
23
24 int
25 main (int argc, char **argv)
26 {
27 return top (-1) + top (1);
28 }
This page took 0.02937 seconds and 4 git commands to generate.