@@ -72,25 +72,25 @@ enum class OpenACCAtomicKind {
72
72
73
73
// / Represents the kind of an OpenACC clause.
74
74
enum class OpenACCClauseKind {
75
- // 'finalize' clause, allowed on 'exit data' directive.
75
+ // / 'finalize' clause, allowed on 'exit data' directive.
76
76
Finalize,
77
- // 'if_present' clause, allowed on 'host_data' and 'update' directives.
77
+ // / 'if_present' clause, allowed on 'host_data' and 'update' directives.
78
78
IfPresent,
79
- // 'seq' clause, allowed on 'loop' and 'routine' directives.
79
+ // / 'seq' clause, allowed on 'loop' and 'routine' directives.
80
80
Seq,
81
- // 'independent' clause, allowed on 'loop' directives.
81
+ // / 'independent' clause, allowed on 'loop' directives.
82
82
Independent,
83
- // 'auto' clause, allowed on 'loop' directives.
83
+ // / 'auto' clause, allowed on 'loop' directives.
84
84
Auto,
85
- // 'worker' clause, allowed on 'loop' and 'routine' directives.
85
+ // / 'worker' clause, allowed on 'loop' and 'routine' directives.
86
86
Worker,
87
- // 'vector' clause, allowed on 'loop' and 'routine' directives. Takes no
88
- // arguments for 'routine', so the 'loop' version is not yet implemented
89
- // completely.
87
+ // / 'vector' clause, allowed on 'loop' and 'routine' directives. Takes no
88
+ // / arguments for 'routine', so the 'loop' version is not yet implemented
89
+ // / completely.
90
90
Vector,
91
- // 'nohost' clause, allowed on 'routine' directives.
91
+ // / 'nohost' clause, allowed on 'routine' directives.
92
92
NoHost,
93
- // Represents an invalid clause, for the purposes of parsing.
93
+ // / Represents an invalid clause, for the purposes of parsing.
94
94
Invalid,
95
95
};
96
96
} // namespace clang
0 commit comments