Merge gcc.295/cccp.c,v 1.9: don't let gcc(1) hide warnings in system headers.

Reviewed by:	bde

Original 2.95 change was subject to:

Approved by:	obrien
This commit is contained in:
Ruslan Ermilov 2002-08-15 08:45:49 +00:00
parent 43290b6363
commit 26e1070b8b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=101910

View File

@ -19,6 +19,8 @@ along with GCC; see the file COPYING. If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
/* $FreeBSD$ */
#include "config.h"
#include "system.h"
@ -315,7 +317,11 @@ cb_file_change (pfile, new_map)
}
update_header_times (new_map->to_file);
#ifndef FREEBSD_NATIVE
in_system_header = new_map->sysp != 0;
#else /* FREEBSD_NATIVE */
in_system_header = 0;
#endif /* FREEBSD_NATIVE */
input_filename = new_map->to_file;
lineno = to_line;
map = new_map;