summaryrefslogtreecommitdiff
path: root/gcc/input.h
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2016-08-18 13:07:53 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2016-08-18 13:07:53 +0000
commitf89b03b6bec154b41041b08df7bf53203524a826 (patch)
tree16edeb7bb8574ddbbe228f6cc852ec20e0ca6e1e /gcc/input.h
parentf02510201aff3a572f7c67fcce3ee90c127ecd76 (diff)
Evict selftest tempfiles from the diagnostics file cache
Selftests can use class selftest::temp_source_file to write out files for testing input-handling, and the files are unlinked in the dtor. This leads to stale entries in input.c's cache of file content, which could lead to errors if a temporary filename gets reused during a run of the selftests. We don't normally expect files to be "deleted from under us", so special-case this by adding a special way for temp_source_file's dtor to purge any cache entries referring to it. gcc/ChangeLog: * input.c (diagnostics_file_cache_forcibly_evict_file): New function. * input.h (diagnostics_file_cache_forcibly_evict_file): New declaration. * selftest.c (selftest::temp_source_file::~temp_source_file): Evict m_filename from the diagnostic file cache. From-SVN: r239570
Diffstat (limited to 'gcc/input.h')
-rw-r--r--gcc/input.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/input.h b/gcc/input.h
index c17e440e576..0f187c7f2ba 100644
--- a/gcc/input.h
+++ b/gcc/input.h
@@ -95,6 +95,8 @@ void dump_location_info (FILE *stream);
void diagnostics_file_cache_fini (void);
+void diagnostics_file_cache_forcibly_evict_file (const char *file_path);
+
struct GTY(()) string_concat
{
string_concat (int num, location_t *locs);