This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 3ece4ed 2015-11-13 James Bowman james.bowman@ftdichip.com new b67f056 Implement Levenshtein distance; use in C FE for misspelled fi [...] new b279775 PR driver/67613 - spell suggestions for misspelled command li [...]
The 2 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: gcc/ChangeLog | 23 ++++ gcc/Makefile.in | 4 +- gcc/c/ChangeLog | 8 ++ gcc/c/c-typeck.c | 74 ++++++++++++- gcc/gcc.c | 51 ++++++++- gcc/{main.c => spellcheck-tree.c} | 27 +++-- gcc/spellcheck.c | 121 +++++++++++++++++++++ gcc/{backend.h => spellcheck.h} | 29 ++--- gcc/testsuite/ChangeLog | 14 +++ .../{wide-int-test-1.c => levenshtein-test-1.c} | 2 +- gcc/testsuite/gcc.dg/plugin/levenshtein_plugin.c | 64 +++++++++++ gcc/testsuite/gcc.dg/plugin/plugin.exp | 1 + gcc/testsuite/gcc.dg/spellcheck-fields.c | 63 +++++++++++ gcc/testsuite/gcc.dg/spellcheck-options-1.c | 4 + gcc/testsuite/gcc.dg/spellcheck-options-2.c | 5 + 15 files changed, 458 insertions(+), 32 deletions(-) copy gcc/{main.c => spellcheck-tree.c} (56%) create mode 100644 gcc/spellcheck.c copy gcc/{backend.h => spellcheck.h} (58%) copy gcc/testsuite/gcc.dg/plugin/{wide-int-test-1.c => levenshtein-test-1.c} (59%) create mode 100644 gcc/testsuite/gcc.dg/plugin/levenshtein_plugin.c create mode 100644 gcc/testsuite/gcc.dg/spellcheck-fields.c create mode 100644 gcc/testsuite/gcc.dg/spellcheck-options-1.c create mode 100644 gcc/testsuite/gcc.dg/spellcheck-options-2.c