c++: Rename macro location structs
authorNathan Sidwell <nathan@acm.org>
Fri, 24 Jun 2022 12:17:24 +0000 (05:17 -0700)
committerNathan Sidwell <nathan@acm.org>
Wed, 29 Jun 2022 16:36:18 +0000 (09:36 -0700)
commit01779f4f3d0ce7913da10649cda9ea69b0e5dd1b
tree6760277048c81f66c576529e16d560b5cab7bd49
parent98c18e040e2c65db93f1498bb421e83165da3738
c++: Rename macro location structs

The macro location tables should really mention they are about
locations.  So rename them.  Also, add a missing free of the remapping
table, and remove some now-unneeded macro checking.

gcc/cp/
* module.cc (macro_info, macro_traits, macro_table,
macro_remap): Rename to ...
(macro_loc_info, macro_loc_traits, macro_loc_table,
macro_loc_remap): ... these.  Update all uses.
(module_state::write_prepare_maps): Remove unneeded macro checking.
(module_state::write_begin): Free macro_loc_remap.
gcc/cp/module.cc