This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug middle-end/59917] [4.9 Regression] ICE in calc_dfs_tree, at dominance.c:401


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59917

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2014-01-23
                 CC|                            |jakub at gcc dot gnu.org
   Target Milestone|---                         |4.9.0
     Ever confirmed|0                           |1

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Reduced testcase for -fopenmp:
struct J;
extern "C" int setjmp (struct J[1]) throw ();
extern struct J j[1];
void foo (unsigned long);

void
bar (void)
{
  if (setjmp (j) == 0)
    {
#pragma omp parallel
      for (long int k = 0; k < 10; ++k)
        foo (k);
    }
}

Started likely with r198096.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]