Commit bcad4ca2 by Roger Sayle

cppfiles.c (pch_open_file): Minor tweak to work-around native HPPA compiler bug.


	* cppfiles.c (pch_open_file): Minor tweak to work-around native
	HPPA compiler bug.

From-SVN: r75256
parent a3c9585f
2003-12-30 Roger Sayle <roger@eyesopen.com>
* cppfiles.c (pch_open_file): Minor tweak to work-around native
HPPA compiler bug.
2003-12-30 Kazu Hirata <kazu@cs.umass.edu> 2003-12-30 Kazu Hirata <kazu@cs.umass.edu>
* config/rs6000/aix.h: Fix comment formatting. * config/rs6000/aix.h: Fix comment formatting.
...@@ -47,7 +52,7 @@ ...@@ -47,7 +52,7 @@
2003-12-30 Jan Hubicka <jh@suse.cz> 2003-12-30 Jan Hubicka <jh@suse.cz>
PR ice/11936 PR target/11936
* i386.h (CLASS_LIKELY_SPILLED_P): Return true for * i386.h (CLASS_LIKELY_SPILLED_P): Return true for
FP_TOP_REG/FP_SECOND_REG. FP_TOP_REG/FP_SECOND_REG.
......
...@@ -291,8 +291,10 @@ pch_open_file (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch) ...@@ -291,8 +291,10 @@ pch_open_file (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch)
} }
closedir (pchdir); closedir (pchdir);
} }
file->pch |= valid; if (valid)
*invalid_pch |= ! valid; file->pch = true;
else
*invalid_pch = true;
} }
if (valid) if (valid)
......
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