aboutsummaryrefslogtreecommitdiff
path: root/libcpp
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2019-04-09 16:43:22 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2019-04-09 16:43:22 +0000
commit9bafe5a81e42406b86a65ef14b011ed9acc96c5d (patch)
tree35478f4f4ff092374f748479debcda06b96dd6dd /libcpp
parent10f47d3d1dc2e1267a32fa6459655b4645a9adad (diff)
parent3fa176b767e14e1d2491775978afac3e87892d1d (diff)
downloadgcc-9bafe5a81e42406b86a65ef14b011ed9acc96c5d.zip
gcc-9bafe5a81e42406b86a65ef14b011ed9acc96c5d.tar.gz
gcc-9bafe5a81e42406b86a65ef14b011ed9acc96c5d.tar.bz2
Merge from trunk revision 270220.
From-SVN: r270233
Diffstat (limited to 'libcpp')
-rw-r--r--libcpp/ChangeLog4
-rw-r--r--libcpp/files.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog
index 261494b..7fe5b52 100644
--- a/libcpp/ChangeLog
+++ b/libcpp/ChangeLog
@@ -1,3 +1,7 @@
+2019-04-03 Jonathan Wakely <jwakely@redhat.com>
+
+ * files.c (search_path_exhausted): Fix typo in comment.
+
2019-02-26 Martin Liska <mliska@suse.cz>
* symtab.c (ht_dump_statistics): Make
diff --git a/libcpp/files.c b/libcpp/files.c
index 77dc188..b0ac22b 100644
--- a/libcpp/files.c
+++ b/libcpp/files.c
@@ -455,7 +455,7 @@ find_file_in_dir (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch,
return false;
}
-/* Return tue iff the missing_header callback found the given HEADER. */
+/* Return true iff the missing_header callback found the given HEADER. */
static bool
search_path_exhausted (cpp_reader *pfile, const char *header, _cpp_file *file)
{