]> Git Repo - binutils.git/blob - gdb/testsuite/gdb.ctf/cross-tu-cyclic-2.c
Automatic date update in version.in
[binutils.git] / gdb / testsuite / gdb.ctf / cross-tu-cyclic-2.c
1 struct B;
2 struct A
3 {
4   long a;
5   struct B *foo;
6   struct C *bar;
7 };
8
9 struct C
10 {
11   struct B *foo;
12   int b;
13 };
14
15 static struct C *foo __attribute__((used));
16 static struct A *bar __attribute__((used));
This page took 0.028184 seconds and 4 git commands to generate.