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
This commit is contained in:
Roger Sayle 2003-12-31 05:11:44 +00:00
parent a3c9585fe7
commit bcad4ca247
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,8 @@
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>
* config/rs6000/aix.h: Fix comment formatting.
@ -47,7 +52,7 @@
2003-12-30 Jan Hubicka <jh@suse.cz>
PR ice/11936
PR target/11936
* i386.h (CLASS_LIKELY_SPILLED_P): Return true for
FP_TOP_REG/FP_SECOND_REG.

View File

@ -291,8 +291,10 @@ pch_open_file (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch)
}
closedir (pchdir);
}
file->pch |= valid;
*invalid_pch |= ! valid;
if (valid)
file->pch = true;
else
*invalid_pch = true;
}
if (valid)