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/25990] gomp ICE with -fopenmp



------- Comment #5 from pinskia at gcc dot gnu dot org  2006-01-27 14:22 -------
Reduced testcase:
__strcspn_c2 (__const char *__s, int __reject1, int __reject2)
{
  int m = 1,n = 1,s = 1;
  int DD,EE,num_s;
  int m_max = 99;
  int n_max = 00;
  for ( n = 1 ; n <= 99 ; n++ )
    for ( m = 1 ; m <= 99 ; m++ )
      for ( m = 1 ; m <= m_max ; m++)
        for ( s = 1 ; s <= num_s ; s++)
        {
          int liter ;
#pragma omp parallel for private(m,liter,s)
           for ( n = 1 ; n <= n_max ; n++) {}
        }
}


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dnovillo at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-01-27 14:22:50
               date|                            |


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


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