================
@@ -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:

It's never been defined before, this is the only location it has ever been 
defined. The references are because it's layered on top of the other PR that 
also makes alterations to this file that utilise it. The PRs do not function 
without each other and depend on each other, hence the stack. In hindsight it 
might have been better to introduce this type in the previous PR though or in 
an alternative patch. 

https://github.com/llvm/llvm-project/pull/119589
_______________________________________________
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

Reply via email to