diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2003-11-01 22:56:54 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2003-11-01 22:56:54 +0000 |
commit | 0527bc4ebf78a3e1ae984f978fb4f7118a180add (patch) | |
tree | 968c051f5c6b85312c57b38b07efd46743674b3b /gcc/c-incpath.c | |
parent | 2f7b62efc51dd853ab5fa6e36cc0d15c831d6796 (diff) | |
download | gcc-0527bc4ebf78a3e1ae984f978fb4f7118a180add.zip gcc-0527bc4ebf78a3e1ae984f978fb4f7118a180add.tar.gz gcc-0527bc4ebf78a3e1ae984f978fb4f7118a180add.tar.bz2 |
re PR preprocessor/12847 (xxx.c:1:20: xxxx.h: No such file or directory)
PR preprocessor/12847
* cppfiles.c, cppexp.c, cpperror.c, cpplib.h, cpplib.c, cpplex.c,
cppinit.c, cpptrad.c, cppmacro.c, fix-header.c, cpppch.c, c-pch.c,
c-incpath.c, cppcharset.c (DL_WARNING, DL_WARNING_SYSHDR, DL_PEDWARN,
DL_ERROR, DL_ICE, DL_EXTRACT, DL_WARNING_P): Prefix macro names with
"CPP_".
From-SVN: r73183
Diffstat (limited to 'gcc/c-incpath.c')
-rw-r--r-- | gcc/c-incpath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-incpath.c b/gcc/c-incpath.c index e281146..7b08c1a 100644 --- a/gcc/c-incpath.c +++ b/gcc/c-incpath.c @@ -187,12 +187,12 @@ remove_duplicates (cpp_reader *pfile, struct cpp_dir *head, { /* Dirs that don't exist are silently ignored, unless verbose. */ if (errno != ENOENT) - cpp_errno (pfile, DL_ERROR, cur->name); + cpp_errno (pfile, CPP_DL_ERROR, cur->name); else reason = REASON_NOENT; } else if (!S_ISDIR (st.st_mode)) - cpp_error_with_line (pfile, DL_ERROR, 0, 0, + cpp_error_with_line (pfile, CPP_DL_ERROR, 0, 0, "%s: not a directory", cur->name); else { |