This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 523ca6403c6 ctype support for libstdc++ on VxWorks new 25d1a6ecdc4 libcc1: use templates to unmarshall enums new e1f5252e4d4 libcc1: use "override" new 41f4381648f libcc1: inline some simple methods new c10a3b13fec libcc1: delete copy constructor and assignment operators new dc6be7c0225 libcc1: use variadic templates for "call" new 410d5719b78 libcc1: use variadic templates for "rpc" new e702c60e65c libcc1: use std::vector when building function types new 0d5a0b9af5b libcc1: add deleter objects new 0f237df286e libcc1: add more uses of 'deleter' new 30c9604c2c0 libcc1: use unique_ptr more new 1d9c9726013 libcc1: unify compiler handling new 7c4e5d5eaad libcc1: use foreach new 0ed83e1d03b libcc1: use static_assert new 0624823260f libcc1: share basic context code new 1a51cb29907 libcc1: share GDB plugin code new b65c0bcbe13 libcc1: use GCC_FE_VERSION_1 in C++ plugin new a8deb8323b9 libcc1: share the GCC interface code new ee75ca6b72e libcc1: fix a memory leak new 8fdffa48c57 libcc1: use variadic templates for callbacks new 96deddca2e5 libcc1: avoid extra string copies new 61d48b1e2b5 libcc1: avoid a call to c_str
The 21 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: libcc1/Makefile.am | 17 +- libcc1/Makefile.in | 34 +-- libcc1/callbacks.hh | 7 +- libcc1/compiler.cc | 118 ++++++++++ libcc1/compiler.hh | 83 +++++++ libcc1/connection.cc | 11 +- libcc1/connection.hh | 13 +- libcc1/context.cc | 171 +++++++++++++++ libcc1/context.hh | 121 ++++++++++ libcc1/deleter.hh | 53 +++++ libcc1/gdbctx.hh | 350 +++++++++++++++++++++++++++++ libcc1/libcc1.cc | 568 +++-------------------------------------------- libcc1/libcc1plugin.cc | 239 ++------------------ libcc1/libcp1.cc | 582 ++++--------------------------------------------- libcc1/libcp1plugin.cc | 239 ++------------------ libcc1/marshall-c.hh | 59 ----- libcc1/marshall-cp.hh | 111 ++++------ libcc1/marshall.cc | 11 +- libcc1/marshall.hh | 42 +++- libcc1/rpc.hh | 561 +++++++---------------------------------------- 20 files changed, 1204 insertions(+), 2186 deletions(-) create mode 100644 libcc1/compiler.cc create mode 100644 libcc1/compiler.hh create mode 100644 libcc1/context.cc create mode 100644 libcc1/context.hh create mode 100644 libcc1/deleter.hh create mode 100644 libcc1/gdbctx.hh delete mode 100644 libcc1/marshall-c.hh