While browsing through the gcc compiler source code (gcc/c-family/c-pragma.c) I see:
typedef struct GTY(()) align_stack {
int alignment;
tree id;
struct align_stack * prev;
} align_stack;
and regardless of having lots of C programming years behind me, these bits: (())
are totally unknown to me yet. Can someone please explain what they mean? Google does not seem to find it.