aboutsummaryrefslogtreecommitdiff
path: root/gcc/c/ChangeLog
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2015-11-13 01:54:41 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2015-11-13 01:54:41 +0000
commit277fe616911ac1ce91e9f1178d648303b4a26940 (patch)
tree574b1272f86df52172c56c614532ff5032b6f73d /gcc/c/ChangeLog
parent6d82151f8c08d123eaab63409cd8ba6f85d0539c (diff)
downloadgcc-277fe616911ac1ce91e9f1178d648303b4a26940.zip
gcc-277fe616911ac1ce91e9f1178d648303b4a26940.tar.gz
gcc-277fe616911ac1ce91e9f1178d648303b4a26940.tar.bz2
Implement Levenshtein distance; use in C FE for misspelled field names
This is the combination of: [PATCH 1/2] Implement Levenshtein distance [PATCH 2/2] C FE: suggest corrections for misspelled field names plus some nit fixes in spellcheck.c. gcc/ChangeLog: * Makefile.in (OBJS): Add spellcheck.o. * spellcheck.c: New file. * spellcheck.h: New file. gcc/c/ChangeLog: * c-typeck.c: Include spellcheck.h. (lookup_field_fuzzy_find_candidates): New function. (lookup_field_fuzzy): New function. (build_component_ref): If the field was not found, try using lookup_field_fuzzy and potentially offer a suggestion. gcc/testsuite/ChangeLog: * gcc.dg/plugin/levenshtein-test-1.c: New file. * gcc.dg/plugin/levenshtein_plugin.c: New file. * gcc.dg/plugin/plugin.exp (plugin_test_list): Add levenshtein_plugin.c. * gcc.dg/spellcheck-fields.c: New file. From-SVN: r230284
Diffstat (limited to 'gcc/c/ChangeLog')
-rw-r--r--gcc/c/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index 02ae07e..9b1fdc9 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,11 @@
+2015-11-13 David Malcolm <dmalcolm@redhat.com>
+
+ * c-typeck.c: Include spellcheck.h.
+ (lookup_field_fuzzy_find_candidates): New function.
+ (lookup_field_fuzzy): New function.
+ (build_component_ref): If the field was not found, try using
+ lookup_field_fuzzy and potentially offer a suggestion.
+
2015-11-12 James Norris <jnorris@codesourcery.com>
Joseph Myers <joseph@codesourcery.com>