[llvm-branch-commits] [flang] [llvm] [mlir] [Flang][OpenMP][MLIR] Initial declare target to for variables implementation (PR #119589)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Mon Oct 6 13:32:13 PDT 2025
================
@@ -3664,6 +3690,30 @@ struct MapInfoData : MapInfosTy {
MapInfosTy::append(CurInfo);
}
};
+
+enum class TargetDirective : uint32_t {
+ None = 0,
+ Target = 1,
+ TargetData = 2,
+ TargetEnterData = 3,
+ TargetExitData = 4,
+ TargetUpdate = 5
+};
----------------
agozillon wrote:
Will do! And it's currently in an anonymous namespace, just a little hidden in this PR as it's wedged in-between some other stuff that sits inside of the namespace! :-)
https://github.com/llvm/llvm-project/pull/119589
More information about the llvm-branch-commits
mailing list