@@ -72,25 +72,25 @@ enum class OpenACCAtomicKind {
7272
7373// / Represents the kind of an OpenACC clause.
7474enum class OpenACCClauseKind {
75- // 'finalize' clause, allowed on 'exit data' directive.
75+ // / 'finalize' clause, allowed on 'exit data' directive.
7676 Finalize,
77- // 'if_present' clause, allowed on 'host_data' and 'update' directives.
77+ // / 'if_present' clause, allowed on 'host_data' and 'update' directives.
7878 IfPresent,
79- // 'seq' clause, allowed on 'loop' and 'routine' directives.
79+ // / 'seq' clause, allowed on 'loop' and 'routine' directives.
8080 Seq,
81- // 'independent' clause, allowed on 'loop' directives.
81+ // / 'independent' clause, allowed on 'loop' directives.
8282 Independent,
83- // 'auto' clause, allowed on 'loop' directives.
83+ // / 'auto' clause, allowed on 'loop' directives.
8484 Auto,
85- // 'worker' clause, allowed on 'loop' and 'routine' directives.
85+ // / 'worker' clause, allowed on 'loop' and 'routine' directives.
8686 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.
9090 Vector,
91- // 'nohost' clause, allowed on 'routine' directives.
91+ // / 'nohost' clause, allowed on 'routine' directives.
9292 NoHost,
93- // Represents an invalid clause, for the purposes of parsing.
93+ // / Represents an invalid clause, for the purposes of parsing.
9494 Invalid,
9595};
9696} // namespace clang
0 commit comments