[libomptarget][NFC] Sort list of plugins in chronological order
authorGeorge Rokos <georgios.rokos@intel.com>
Mon, 17 Aug 2020 15:32:23 +0000 (08:32 -0700)
committerGeorge Rokos <georgios.rokos@intel.com>
Mon, 17 Aug 2020 15:33:36 +0000 (08:33 -0700)
Differential Revision: https://reviews.llvm.org/D86082

openmp/libomptarget/src/rtl.cpp

index 8e101b7..ed339e0 100644 (file)
 
 // List of all plugins that can support offloading.
 static const char *RTLNames[] = {
+    /* PowerPC target       */ "libomptarget.rtl.ppc64.so",
+    /* x86_64 target        */ "libomptarget.rtl.x86_64.so",
+    /* CUDA target          */ "libomptarget.rtl.cuda.so",
+    /* AArch64 target       */ "libomptarget.rtl.aarch64.so",
     /* SX-Aurora VE target  */ "libomptarget.rtl.ve.so",
-    /* PowerPC target */ "libomptarget.rtl.ppc64.so",
-    /* x86_64 target  */ "libomptarget.rtl.x86_64.so",
-    /* CUDA target    */ "libomptarget.rtl.cuda.so",
-    /* AArch64 target */ "libomptarget.rtl.aarch64.so",
-    /* AMDGPU target  */ "libomptarget.rtl.amdgpu.so",
+    /* AMDGPU target        */ "libomptarget.rtl.amdgpu.so",
 };
 
 RTLsTy *RTLs;