[PATCH] D71989: [OpenMP][IRBuilder][WIP] Prototype `omp task` support

Roman Lebedev via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Dec 29 23:30:39 PST 2019


lebedev.ri added inline comments.


================
Comment at: llvm/include/llvm/Frontend/OpenMP/OMPIRBuilder.h:86-87
+    enum : uint64_t {
+      IN = 1uL << 61,
+      OUT = 1uL << 61,
+      IN_OUT = IN | OUT,
----------------
This doesn't seem correctt.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D71989





More information about the llvm-commits mailing list