Commit dd86c8da by Martin Liska Committed by Martin Liska

Comment too strict checking assert.

2019-11-25  Martin Liska  <mliska@suse.cz>

	PR bootstrap/92653
	* ipa-fnsummary.c (ipa_fn_summary::account_size_time): Comment out
	too strict checking assert.

From-SVN: r278686
parent 3554d8ff
2019-11-25 Martin Liska <mliska@suse.cz>
PR bootstrap/92653
* ipa-fnsummary.c (ipa_fn_summary::account_size_time): Comment out
too strict checking assert.
2019-11-25 Joseph Myers <joseph@codesourcery.com> 2019-11-25 Joseph Myers <joseph@codesourcery.com>
PR c/91985 PR c/91985
...@@ -227,7 +227,7 @@ ipa_fn_summary::account_size_time (int size, sreal time, ...@@ -227,7 +227,7 @@ ipa_fn_summary::account_size_time (int size, sreal time,
{ {
e->size += size; e->size += size;
e->time += time; e->time += time;
gcc_checking_assert (e->time >= -1); /* FIXME: PR bootstrap/92653 gcc_checking_assert (e->time >= -1); */
/* Tolerate small roundoff issues. */ /* Tolerate small roundoff issues. */
if (e->time < 0) if (e->time < 0)
e->time = 0; e->time = 0;
......
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