mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:54:41 +08:00
13 lines
112 B
C
13 lines
112 B
C
|
struct B
|
||
|
{
|
||
|
int foo;
|
||
|
};
|
||
|
|
||
|
struct A
|
||
|
{
|
||
|
long a;
|
||
|
struct B *foo;
|
||
|
};
|
||
|
|
||
|
static struct A *foo __attribute__((used));
|