Commit e235d8bf by Geoffrey Keating Committed by Geoffrey Keating

cppfiles.c (_cpp_find_file): Make 'one or more PCH files were found' message…

cppfiles.c (_cpp_find_file): Make 'one or more PCH files were found' message comply with GNU standards.

	* cppfiles.c (_cpp_find_file): Make 'one or more PCH files were found'
	message comply with GNU standards.

From-SVN: r73611
parent ec75414f
2003-11-14 Geoffrey Keating <geoffk@apple.com>
* cppfiles.c (_cpp_find_file): Make 'one or more PCH files were found'
message comply with GNU standards.
2003-11-14 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> 2003-11-14 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
PR/6552 PR/6552
......
...@@ -389,10 +389,10 @@ _cpp_find_file (cpp_reader *pfile, const char *fname, cpp_dir *start_dir, bool f ...@@ -389,10 +389,10 @@ _cpp_find_file (cpp_reader *pfile, const char *fname, cpp_dir *start_dir, bool f
if (invalid_pch) if (invalid_pch)
{ {
cpp_error (pfile, CPP_DL_ERROR, cpp_error (pfile, CPP_DL_ERROR,
"One or more PCH files were found, but they were invalid."); "one or more PCH files were found, but they were invalid");
if (! cpp_get_options (pfile)->warn_invalid_pch) if (!cpp_get_options (pfile)->warn_invalid_pch)
cpp_error (pfile, CPP_DL_ERROR, cpp_error (pfile, CPP_DL_ERROR,
"Use -Winvalid-pch for more information."); "use -Winvalid-pch for more information");
} }
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment