Comment too strict checking assert.
authorMartin Liska <mliska@suse.cz>
Mon, 25 Nov 2019 13:57:00 +0000 (14:57 +0100)
committerMartin Liska <marxin@gcc.gnu.org>
Mon, 25 Nov 2019 13:57:00 +0000 (13:57 +0000)
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

gcc/ChangeLog
gcc/ipa-fnsummary.c

index 2b63623..f161ff0 100644 (file)
@@ -1,3 +1,9 @@
+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>
 
        PR c/91985
index 122a369..66d2be6 100644 (file)
@@ -227,7 +227,7 @@ ipa_fn_summary::account_size_time (int size, sreal time,
     {
       e->size += size;
       e->time += time;
-      gcc_checking_assert (e->time >= -1);
+      /* FIXME: PR bootstrap/92653 gcc_checking_assert (e->time >= -1); */
       /* Tolerate small roundoff issues.  */
       if (e->time < 0)
        e->time = 0;