https://gcc.gnu.org/bugzilla/show_bug.cgi?id=123229

--- Comment #2 from Sam James <sjames at gcc dot gnu.org> ---
219                   gcc_assert (chk_estimates.size == size
(gdb) p chk_estimates
$6 = {
  size = 42,
  min_size = 3,
  time = {
    m_sig = 841186566,
    m_exp = -24
  },
  nonspecialized_time = {
    m_sig = 938852680,
    m_exp = -24
  },
  hints = 32,
  loops_with_known_iterations = {
    m_sig = 0,
    m_exp = -536870911
  },
  loops_with_known_strides = {
    m_sig = 0,
    m_exp = -536870911
  }
}
(gdb) list
214                   && !opt_for_fn (callee->decl,
flag_profile_partial_training)
215                   && !callee->count.ipa_p ())
216                 {
217                   ipa_call_estimates chk_estimates;
218                   ctx.estimate_size_and_time (&chk_estimates);
219                   gcc_assert (chk_estimates.size == size
220                               && chk_estimates.time == time
221                               && chk_estimates.nonspecialized_time ==
nonspec_time
222                               && chk_estimates.hints == hints);
223                 }
(gdb) p size
$7 = 44
(gdb) p time
$8 = {
  m_sig = 925072646,
  m_exp = -24
}
(gdb) p nonspec_time
$9 = {
  m_sig = 1022738760,
  m_exp = -24
}
(gdb) p hints
$10 = 32

Reply via email to