[PATCH] D110029: [OpenMP][Offloading] Use bitset to indicate execution mode instead of value

Shilei Tian via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Sep 21 09:11:51 PDT 2021


tianshilei1992 marked an inline comment as done.
tianshilei1992 added inline comments.


================
Comment at: llvm/include/llvm/Frontend/OpenMP/OMPConstants.h:132
+enum class OMPTargetExecutionModeMaskType : int8_t {
+  Generic = 0x1,
+  SPMD = 0x2,
----------------
Do we want to set a `NONE = 0x0` here?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D110029



More information about the cfe-commits mailing list