You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I could not find a way to look up a structure type by tag.
E.g., I wanted to look up 'struct buffer'.
I could do this by introducing typedefs, but I'd rather
not have to do that.
The text was updated successfully, but these errors were encountered:
However, it looks like gcc.Block.vars is misnamed; it corresponds to:
{{{
#define BLOCK_VARS(NODE) (BLOCK_CHECK (NODE)->block.vars)
}}}
from tree.h, but this seems to contain all declarations, not just variables (but see ticket #21).
I'm inclined to rename it to "decls" - does this sound sane?
I could not find a way to look up a structure type by tag.
E.g., I wanted to look up 'struct buffer'.
I could do this by introducing typedefs, but I'd rather
not have to do that.
The text was updated successfully, but these errors were encountered: