diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-08-03 09:28:25 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-08-03 09:28:25 +0000 |
commit | 76bf2c97952bda74591761d2ac1ac9eb1aa1697c (patch) | |
tree | 3d04809650197b0c4a7e71bd65cf41599fbe2c43 /gcc/cppfiles.c | |
parent | 178b2b9f0f31ed70e30d802db7d0aced8de5fd3c (diff) | |
download | gcc-76bf2c97952bda74591761d2ac1ac9eb1aa1697c.zip gcc-76bf2c97952bda74591761d2ac1ac9eb1aa1697c.tar.gz gcc-76bf2c97952bda74591761d2ac1ac9eb1aa1697c.tar.bz2 |
cppfiles.c (stack_file): Use file path.
* cppfiles.c (stack_file): Use file path.
testsuite:
* lib/dg-pch.exp: Work round PCH bug.
From-SVN: r70114
Diffstat (limited to 'gcc/cppfiles.c')
-rw-r--r-- | gcc/cppfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index 007eb09..8dcc269 100644 --- a/gcc/cppfiles.c +++ b/gcc/cppfiles.c @@ -621,7 +621,7 @@ stack_file (cpp_reader *pfile, _cpp_file *file, bool import) pfile->mi_cmacro = 0; /* Generate the call back. */ - _cpp_do_file_change (pfile, LC_ENTER, file->name, 1, sysp); + _cpp_do_file_change (pfile, LC_ENTER, file->path, 1, sysp); return true; } |