Do not run for targets which do not support shared objects.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / relocate.c
1 static int static_foo = 1;
2 static int static_bar = 2;
3
4 /* This padding is just for the benefit of the test harness. It
5 causes the globals to have different addresses than the functions. */
6 int dummy[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
7
8 int global_foo = 3;
9 int global_bar = 4;
10
11 int
12 function_foo ()
13 {
14 return 5;
15 }
16
17 int
18 function_bar ()
19 {
20 return 6;
21 }
This page took 0.029443 seconds and 4 git commands to generate.