public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/27388]  New: omp_is_private issues
@ 2006-05-02 14:19 jakub at gcc dot gnu dot org
  2006-05-02 14:38 ` [Bug middle-end/27388] " jakub at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: jakub at gcc dot gnu dot org @ 2006-05-02 14:19 UTC (permalink / raw)
  To: gcc-bugs

void
foo (void)
{
  int i;
  i = 0;
#pragma omp parallel shared (i)
    {
#pragma omp master
      i++;
#pragma omp parallel for
      for (i = 0; i < 10; i++)
        ;
    }
}

results in very weird omplower dump:
1) #pragma omp parallel shared(iD.1922) private(iD.1922)
   for the outer parallel
   (surely we don't want i being shared and private at the same time,
   just shared here)
2) #pragma omp parallel shared(iD.1922)
   for the inner parallel - in this case i certainly ought to be private,
   not shared
I think 1) is caused by n->value = GOVD_PRIVATE; messing up outer context,
while 2) probably because omp_is_private shouldn't recurse over is_parallel
contexts.


-- 
           Summary: omp_is_private issues
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Keywords: openmp
          Severity: normal
          Priority: P3
         Component: middle-end
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: jakub at gcc dot gnu dot org


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2006-05-04  9:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-02 14:19 [Bug middle-end/27388] New: omp_is_private issues jakub at gcc dot gnu dot org
2006-05-02 14:38 ` [Bug middle-end/27388] " jakub at gcc dot gnu dot org
2006-05-02 22:43 ` rth at gcc dot gnu dot org
2006-05-03  1:45 ` rth at gcc dot gnu dot org
2006-05-04  6:34 ` jakub at gcc dot gnu dot org
2006-05-04  9:34 ` jakub at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).