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 c++/24849] [gomp] ICE in expand_expr_real_1



------- Comment #5 from reichelt at gcc dot gnu dot org  2005-11-17 10:02 -------
Here's a shorter testcase without templates:

==========================================
void foo()
{
#pragma omp parallel
    {
        int i, N;
#pragma omp for schedule (dynamic)
        for (i=0; i<N; ++i) ;
    }
}
==========================================

The bug only affects the C++ frontend.
The above testcase compiles fine with the C frontend.


-- 

reichelt at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |reichelt at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |monitored
   Last reconfirmed|0000-00-00 00:00:00         |2005-11-17 10:02:30
               date|                            |


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


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