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

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
On
struct thread {
  template<typename F> thread(F) { }
};

template<typename D>
void sleep_for(D) { }

template<typename T> struct duration { };
using milliseconds = duration<int>;

void f()
{
  thread sleeper([]{
    while (true) {
      for (unsigned cc = 0; cc < 10000; ++cc) ;
      milliseconds m;
    }
  });
}
-std=c++17 -O1 this stopped timing out with r268185.
But, following modification still times out with current trunk:
struct thread {
  template<typename F> thread(F) { }
};

template<typename D>
void sleep_for(D) { }

template<typename T> struct duration { };
using milliseconds = duration<int>;

void f()
{
  thread sleeper([]{
    while (true) {
      for (unsigned cc = 0; cc < 10000; ++cc) ;
      milliseconds m;
    }
    return true;
  });
}
(timeout 60s).  So, this doesn't seem to be fixed.

Reply via email to