coverage.c (get_coverage_counts): Use inform instead of warning about missing profile.

* coverage.c (get_coverage_counts):  Use inform instead of warning
	about missing profile.

From-SVN: r74591
This commit is contained in:
Jan Hubicka 2003-12-13 01:24:39 +01:00 committed by Jan Hubicka
parent 5c425df517
commit bbfff586bc
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-12-13 Jan Hubicka <jh@suse.cz>
* coverage.c (get_coverage_counts): Use inform instead of warning
about missing profile.
2003-12-12 Steven Bosscher <stevenb@suse.de>
* Makefile.in (opts.o, explow.o): Depend on langhooks.h

View File

@ -306,8 +306,8 @@ get_coverage_counts (unsigned counter, unsigned expected,
static int warned = 0;
if (!warned++)
warning ("file %s not found, execution counts assumed to be zero",
da_file_name);
inform ("file %s not found, execution counts assumed to be zero",
da_file_name);
return NULL;
}