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

--- Comment #3 from Drea Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Drea Pinski from comment #2)
> But I do get some valgrind failures:

I think that one is benign:

void
prange_storage::set_prange (const prange &r)
{
  unsigned num_words;
  m_kind = prange_format (r, num_words);
  m_has_bitmask = !r.get_bitmask ().unknown_p ();

we should check m_kind before accessing get_bitmask if m_kind == UNDEFINED.

Reply via email to