|
44 | 44 | !$omp end atomic |
45 | 45 |
|
46 | 46 | ! Check for error conditions: |
47 | | - !ERROR: More than one memory order clause not allowed on OpenMP Atomic construct |
| 47 | + !ERROR: More than one memory order clause not allowed on OpenMP ATOMIC construct |
48 | 48 | !ERROR: At most one SEQ_CST clause can appear on the COMPARE directive |
49 | 49 | !$omp atomic seq_cst seq_cst compare |
50 | 50 | if (b .eq. c) b = a |
51 | | - !ERROR: More than one memory order clause not allowed on OpenMP Atomic construct |
| 51 | + !ERROR: More than one memory order clause not allowed on OpenMP ATOMIC construct |
52 | 52 | !ERROR: At most one SEQ_CST clause can appear on the COMPARE directive |
53 | 53 | !$omp atomic compare seq_cst seq_cst |
54 | 54 | if (b .eq. c) b = a |
55 | | - !ERROR: More than one memory order clause not allowed on OpenMP Atomic construct |
| 55 | + !ERROR: More than one memory order clause not allowed on OpenMP ATOMIC construct |
56 | 56 | !ERROR: At most one SEQ_CST clause can appear on the COMPARE directive |
57 | 57 | !$omp atomic seq_cst compare seq_cst |
58 | 58 | if (b .eq. c) b = a |
59 | 59 |
|
60 | | - !ERROR: More than one memory order clause not allowed on OpenMP Atomic construct |
| 60 | + !ERROR: More than one memory order clause not allowed on OpenMP ATOMIC construct |
61 | 61 | !ERROR: At most one ACQUIRE clause can appear on the COMPARE directive |
62 | 62 | !$omp atomic acquire acquire compare |
63 | 63 | if (b .eq. c) b = a |
64 | | - !ERROR: More than one memory order clause not allowed on OpenMP Atomic construct |
| 64 | + !ERROR: More than one memory order clause not allowed on OpenMP ATOMIC construct |
65 | 65 | !ERROR: At most one ACQUIRE clause can appear on the COMPARE directive |
66 | 66 | !$omp atomic compare acquire acquire |
67 | 67 | if (b .eq. c) b = a |
68 | | - !ERROR: More than one memory order clause not allowed on OpenMP Atomic construct |
| 68 | + !ERROR: More than one memory order clause not allowed on OpenMP ATOMIC construct |
69 | 69 | !ERROR: At most one ACQUIRE clause can appear on the COMPARE directive |
70 | 70 | !$omp atomic acquire compare acquire |
71 | 71 | if (b .eq. c) b = a |
72 | 72 |
|
73 | | - !ERROR: More than one memory order clause not allowed on OpenMP Atomic construct |
| 73 | + !ERROR: More than one memory order clause not allowed on OpenMP ATOMIC construct |
74 | 74 | !ERROR: At most one RELAXED clause can appear on the COMPARE directive |
75 | 75 | !$omp atomic relaxed relaxed compare |
76 | 76 | if (b .eq. c) b = a |
77 | | - !ERROR: More than one memory order clause not allowed on OpenMP Atomic construct |
| 77 | + !ERROR: More than one memory order clause not allowed on OpenMP ATOMIC construct |
78 | 78 | !ERROR: At most one RELAXED clause can appear on the COMPARE directive |
79 | 79 | !$omp atomic compare relaxed relaxed |
80 | 80 | if (b .eq. c) b = a |
81 | | - !ERROR: More than one memory order clause not allowed on OpenMP Atomic construct |
| 81 | + !ERROR: More than one memory order clause not allowed on OpenMP ATOMIC construct |
82 | 82 | !ERROR: At most one RELAXED clause can appear on the COMPARE directive |
83 | 83 | !$omp atomic relaxed compare relaxed |
84 | 84 | if (b .eq. c) b = a |
85 | 85 |
|
86 | | - !ERROR: More than one fail clause not allowed on OpenMP Atomic construct |
| 86 | + !ERROR: More than one FAIL clause not allowed on OpenMP ATOMIC construct |
87 | 87 | !$omp atomic fail(release) compare fail(release) |
88 | 88 | if (c .eq. a) a = b |
89 | 89 | !$omp end atomic |
|
0 commit comments