diff options
Diffstat (limited to 'gcc/c-tree.h')
| -rw-r--r-- | gcc/c-tree.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h index 508567a91d9..1ea096f88b2 100644 --- a/gcc/c-tree.h +++ b/gcc/c-tree.h @@ -41,12 +41,15 @@ struct lang_identifier tree error_locus, limbo_value; }; -/* Wrapping c_lang_decl in another struct is an unfortunate - necessity. */ +/* Language-specific declaration information. */ struct lang_decl { struct c_lang_decl base; + /* The return types and parameter types may have variable size. + This is a list of any SAVE_EXPRs that need to be evaluated to + compute those sizes. */ + tree pending_sizes; }; /* Macros for access to language-specific slots in an identifier. */ |

