Projet_SETI_RISC-V/riscv-gnu-toolchain/gdb/ld/testsuite/ld-ctf/cross-tu-cyclic-1.c
2023-03-06 14:48:14 +01:00

15 lines
139 B
C

struct A;
struct B
{
int foo;
struct A *bar;
};
struct A
{
long a;
struct B *foo;
};
static struct A *foo __attribute__((used));