This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/c++-modules in repository gcc.
from 47a70f40ef6 Merge trunk e38cd64ac6c c++: ADL refactor new 2e6ccb78333 Create c++tools dir new 6bfad31b62f Rebase libcody -- $flag support. new 0835527413f Add mapper flags support new 257f5413107 Adjust c++tools new db742646c16 Update to new Cody::Resolver API
The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: ChangeLog.modules | 66 + Makefile.def | 8 +- Makefile.in | 1388 ++++++++++------ Makefile.tpl | 4 +- c++tools/Makefile.in | 123 ++ {libcody => c++tools}/config.h.in | 30 +- {gnattools => c++tools}/configure | 1821 ++++++++++++++------- c++tools/configure.ac | 210 +++ gcc/cp/mapper-resolver.cc => c++tools/resolver.cc | 17 +- gcc/cp/mapper.h => c++tools/resolver.h | 49 +- gcc/cp/mapper-server.cc => c++tools/server.cc | 58 +- configure | 2 +- configure.ac | 2 +- gcc/config.in | 30 - gcc/configure | 193 +-- gcc/configure.ac | 74 - gcc/cp/Make-lang.in | 11 +- gcc/cp/mapper-client.cc | 7 +- gcc/cp/mapper-client.h | 63 + gcc/cp/mapper-resolver.cc | 248 +-- gcc/cp/mapper.h | 106 +- gcc/cp/module.cc | 64 +- gcc/testsuite/g++.dg/modules/extern-tpl-1_b.C | 2 +- gcc/testsuite/g++.dg/modules/inc-xlate-1_e.C | 2 +- gcc/testsuite/g++.dg/modules/legacy-2_b.H | 2 +- gcc/testsuite/g++.dg/modules/legacy-6_c.C | 2 +- gcc/testsuite/g++.dg/modules/legacy-6_d.C | 2 +- libcody/README.md | 81 +- libcody/client.cc | 43 +- libcody/cody.hh | 125 +- libcody/resolver.cc | 37 +- libcody/server.cc | 73 +- 32 files changed, 3096 insertions(+), 1847 deletions(-) create mode 100644 c++tools/Makefile.in copy {libcody => c++tools}/config.h.in (52%) copy {gnattools => c++tools}/configure (83%) create mode 100644 c++tools/configure.ac copy gcc/cp/mapper-resolver.cc => c++tools/resolver.cc (93%) copy gcc/cp/mapper.h => c++tools/resolver.h (72%) rename gcc/cp/mapper-server.cc => c++tools/server.cc (96%) create mode 100644 gcc/cp/mapper-client.h