ABataev added inline comments.

================
Comment at: clang/lib/AST/OpenMPClause.cpp:19
 #include "clang/Basic/LLVM.h"
+#include "clang/AST/StmtOpenMP.h" //
 #include "clang/Basic/OpenMPKinds.h"
----------------
Remove empty comment


================
Comment at: clang/lib/AST/OpenMPClause.cpp:1620-1621
+  TI.print(OS, Policy);
+  Stmt *S = Node->getDirective();
+  if (S) {
+    OS << ":";
----------------
`if (Stmt *S = Node->getDirective())`


================
Comment at: clang/lib/AST/OpenMPClause.cpp:2411-2419
+       
     if (!FirstSet)
       OS << ", ";
     FirstSet = false;
     OS << getOpenMPContextTraitSetName(Set.Kind) << "={";
 
     bool FirstSelector = true;
----------------
Remove those empty new lines


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D122255/new/

https://reviews.llvm.org/D122255

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to