@@ -67,7 +67,7 @@ enum class OpenACCDirectiveKind {
67
67
};
68
68
69
69
template <typename StreamTy>
70
- inline StreamTy &PrintOpenACCDirectiveKind (StreamTy &Out,
70
+ inline StreamTy &printOpenACCDirectiveKind (StreamTy &Out,
71
71
OpenACCDirectiveKind K) {
72
72
switch (K) {
73
73
case OpenACCDirectiveKind::Parallel:
@@ -138,12 +138,12 @@ inline StreamTy &PrintOpenACCDirectiveKind(StreamTy &Out,
138
138
139
139
inline const StreamingDiagnostic &operator <<(const StreamingDiagnostic &Out,
140
140
OpenACCDirectiveKind K) {
141
- return PrintOpenACCDirectiveKind (Out, K);
141
+ return printOpenACCDirectiveKind (Out, K);
142
142
}
143
143
144
144
inline llvm::raw_ostream &operator <<(llvm::raw_ostream &Out,
145
145
OpenACCDirectiveKind K) {
146
- return PrintOpenACCDirectiveKind (Out, K);
146
+ return printOpenACCDirectiveKind (Out, K);
147
147
}
148
148
149
149
enum class OpenACCAtomicKind {
@@ -266,7 +266,7 @@ enum class OpenACCClauseKind {
266
266
};
267
267
268
268
template <typename StreamTy>
269
- inline StreamTy &PrintOpenACCClauseKind (StreamTy &Out, OpenACCClauseKind K) {
269
+ inline StreamTy &printOpenACCClauseKind (StreamTy &Out, OpenACCClauseKind K) {
270
270
switch (K) {
271
271
case OpenACCClauseKind::Finalize:
272
272
return Out << " finalize" ;
@@ -402,12 +402,12 @@ inline StreamTy &PrintOpenACCClauseKind(StreamTy &Out, OpenACCClauseKind K) {
402
402
403
403
inline const StreamingDiagnostic &operator <<(const StreamingDiagnostic &Out,
404
404
OpenACCClauseKind K) {
405
- return PrintOpenACCClauseKind (Out, K);
405
+ return printOpenACCClauseKind (Out, K);
406
406
}
407
407
408
408
inline llvm::raw_ostream &operator <<(llvm::raw_ostream &Out,
409
409
OpenACCClauseKind K) {
410
- return PrintOpenACCClauseKind (Out, K);
410
+ return printOpenACCClauseKind (Out, K);
411
411
}
412
412
413
413
enum class OpenACCDefaultClauseKind {
0 commit comments