*参照元 [#t282e930] #backlinks *説明 [#p9da3ca1] -パス: [[gcc-8.3/gcc/]] -パス: [[gcc-8.3/gcc/c/c-decl.c]] -FIXME: これは何? --説明 **参考 [#n5d1cffb] *実装 [#o7cfe939] /* Each C symbol points to three linked lists of c_binding structures. These describe the values of the identifier in the three different namespaces defined by the language. */ struct GTY(()) lang_identifier { struct c_common_identifier common_id; struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */ struct c_binding *tag_binding; /* struct/union/enum tags */ struct c_binding *label_binding; /* labels */ }; - --[[gcc-8.3/gcc/GTY()]] --[[gcc-8.3/gcc/c_common_identifier]] --[[gcc-8.3/gcc/c_binding]] *コメント [#u00c7937]