[CPP PATCH] node type
commit33bb12b1ed4b88023f8076822807d648cab9c899
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 20 Aug 2018 16:32:29 +0000 (20 16:32 +0000)
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 20 Aug 2018 16:32:29 +0000 (20 16:32 +0000)
tree8ef03edd4d66a34af550bf97a6a1ea02e32c7bc6
parentfaf7b1b05a86160252c44581d1e9960af73d94e8
[CPP PATCH] node type

https://gcc.gnu.org/ml/gcc-patches/2018-08/msg01164.html
* include/cpplib.h (NODE_BUILTIN, NODE_MACRO_ARG): Delete.
Renumber others.
(enum node_type): Replace NT_MACRO with NT_USER_MACRO,
NT_BUILTIN_MACRO, NT_MACRO_ARG.  Delete NT_ASSERTION.
(NTV_MACRO, NTV_ANSWER, NTV_BUILTIN, NTV_ARGUMENT, NTV_NONE):
Delete.
(CPP_HASHNODE_VALUE_IDX): Delete.
(union _cpp_hashnode_value): GTY tag from enum node_type directly.
(struct cpp_hashnode): Adjust GTY desc for value field.
(cpp_user_macro_p, cpp_builtin_macro_p, cpp_macro_p): Adjust.
* directives.c (undefine_macros): Clear value.anwers, adjust flag
clearing.
(_cpp_test_assertion): No need to check NT_ASSERTION.
(do_assert, do_unassert): Likewise.
* init.c (cpp_init_special_builtins): Set type not flags.
* macro.c (struct macro_arg_saved_data): Add type field.
(cpp_get_token_1): Check type not NT_VOID.
(_cpp_free_definition): Adjust flag clearing.  Nullify
value.answers.
(_cpp_save_parameter, _cpp_unsave_parameters): Save and restore
type.
(lex_expansion_token): Check type not flags.
(_cpp_create_definition): Set type to NT_USER_MACRO.
(_cpp_notify_macro_use): Adjust type checking.
* pch.c (write_macdef, count_defs, write_defs, cpp_valid_state)
(save_macros): Adjust node type/flag handling.
* traditional.c (_cpp_scan_out_logical_line): Check type not flags.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@263667 138bc75d-0d04-0410-961f-82ee72b054a4
libcpp/ChangeLog
libcpp/directives.c
libcpp/include/cpplib.h
libcpp/init.c
libcpp/macro.c
libcpp/pch.c
libcpp/traditional.c