public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/105536] New: [OpenMP] Bogus "expected ‘concurrent’ before ‘reproducible’"
@ 2022-05-09 16:40 burnus at gcc dot gnu.org
  2022-05-09 16:49 ` [Bug c/105536] " burnus at gcc dot gnu.org
  0 siblings, 1 reply; 2+ messages in thread
From: burnus at gcc dot gnu.org @ 2022-05-09 16:40 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105536

            Bug ID: 105536
           Summary: [OpenMP] Bogus "expected ‘concurrent’ before
                    ‘reproducible’"
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Keywords: diagnostic, openmp
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: burnus at gcc dot gnu.org
                CC: jakub at gcc dot gnu.org
  Target Milestone: ---

I think the message shown by C/C++ for the following is bogus:

repro.c:3:23: error: expected ‘concurrent’ before ‘reproducible’
    3 | #pragma omp for order(reproducible)
      |                       ^~~~~~~~~~~~

The standard requires 'order(reproducible:concurrent)' – Thus, I expect *after*
and not *before* in the error message.
Cf. https://www.openmp.org/spec-html/5.1/openmpsu47.html#x72-720002.11.3

void f(void)
{
#pragma omp for order(reproducible)
 for (int i=0; i < 1; i++)
   ;
}


Side remark: Fortran is fine as it gives the following:

    1 | !$omp do order(reproducible)
      |                1
Error: Expected ORDER(CONCURRENT) at (1) with optional ‘reproducible’ or
‘unconstrained’ modifier

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

end of thread, other threads:[~2022-05-09 16:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-09 16:40 [Bug c/105536] New: [OpenMP] Bogus "expected ‘concurrent’ before ‘reproducible’" burnus at gcc dot gnu.org
2022-05-09 16:49 ` [Bug c/105536] " burnus at gcc dot gnu.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).