[Openmp-commits] [PATCH] D74503: [libomptarget][nfc] Change enum values to match those in cuda/rtl

Jon Chesterfield via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Wed Feb 12 15:27:34 PST 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rGc2ce9ea4e372: [libomptarget][nfc] Change enum values to match those in cuda/rtl (authored by JonChesterfield).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D74503

Files:
  openmp/libomptarget/deviceRTLs/common/support.h


Index: openmp/libomptarget/deviceRTLs/common/support.h
===================================================================
--- openmp/libomptarget/deviceRTLs/common/support.h
+++ openmp/libomptarget/deviceRTLs/common/support.h
@@ -20,8 +20,8 @@
 // Execution Parameters
 ////////////////////////////////////////////////////////////////////////////////
 enum ExecutionMode {
-  Generic = 0x00u,
-  Spmd = 0x01u,
+  Spmd = 0x00u,
+  Generic = 0x01u,
   ModeMask = 0x01u,
 };
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D74503.244290.patch
Type: text/x-patch
Size: 475 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20200212/7a3856d1/attachment.bin>


More information about the Openmp-commits mailing list