[clang] [llvm] [mlir] [openmp] [LoopTiling][Clang][OpenMP] Canonical Intra-tile Loops (PR #191114)
Michael Kruse via cfe-commits
cfe-commits at lists.llvm.org
Fri Jun 26 05:56:15 PDT 2026
================
@@ -10,12 +10,48 @@
//
//===----------------------------------------------------------------------===//
-#include "clang/AST/ASTContext.h"
#include "clang/AST/StmtOpenMP.h"
+#include "clang/AST/ASTContext.h"
+#include "clang/AST/Attr.h"
+#include "clang/AST/Stmt.h"
using namespace clang;
using namespace llvm::omp;
+// True if the attributed statement carries the internal `omp tile` intra-tile
+// body-guard marker.
----------------
Meinersbur wrote:
Use `///`-comments for function documentaton
https://github.com/llvm/llvm-project/pull/191114
More information about the cfe-commits
mailing list