/* An identifier in the cpp_token union. */ struct GTY(()) cpp_identifier { /* The canonical (UTF-8) spelling of the identifier. */ cpp_hashnode * GTY ((nested_ptr (union tree_node, "%h ? CPP_HASHNODE (GCC_IDENT_TO_HT_IDENT (%h)) : NULL", "%h ? HT_IDENT_TO_GCC_IDENT (HT_NODE (%h)) : NULL"))) node; /* The original spelling of the identifier. */ cpp_hashnode * GTY ((nested_ptr (union tree_node, "%h ? CPP_HASHNODE (GCC_IDENT_TO_HT_IDENT (%h)) : NULL", "%h ? HT_IDENT_TO_GCC_IDENT (HT_NODE (%h)) : NULL"))) spelling; };
GCC主要数据结构之cpp_identifier
最新推荐文章于 2022-05-29 11:36:15 发布