This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
[gomp] Does it make sense to post bug reports already?
- From: Volker Reichelt <reichelt at igpm dot rwth-aachen dot de>
- To: gcc at gcc dot gnu dot org
- Date: Thu, 20 Oct 2005 09:17:02 +0200 (CEST)
- Subject: [gomp] Does it make sense to post bug reports already?
Hi,
I just wanted to know what's the state of the gomp branch w.r.t
bug reports. Does it make sense to already send bug reports to
you or even add them to bugzilla?
We've got a large C++ application that uses OpenMP and we are really
interested in getting gomp work.
Here's one bug for starters:
void foo()
{
int i;
#pragma omp parallel for
for ( i=0; i<10; ++i )
continue;
}
With the C frontend I get:
gbug.c: In function '__omp_fn.1':
gbug.c:6: error: invalid exit from OpenMP structured block
With the C++ frontend I get:
gbug.cc: In function 'void foo()':
gbug.cc:6: error: continue statement not within loop or switch
Regards,
Volker