Skip to content

Commit 32ebdc7

Browse files
author
George Rokos
committed
[libomptarget][NFC] Sort list of plugins in chronological order
Differential Revision: https://reviews.llvm.org/D86082
1 parent eed6476 commit 32ebdc7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

openmp/libomptarget/src/rtl.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323

2424
// List of all plugins that can support offloading.
2525
static const char *RTLNames[] = {
26+
/* PowerPC target */ "libomptarget.rtl.ppc64.so",
27+
/* x86_64 target */ "libomptarget.rtl.x86_64.so",
28+
/* CUDA target */ "libomptarget.rtl.cuda.so",
29+
/* AArch64 target */ "libomptarget.rtl.aarch64.so",
2630
/* SX-Aurora VE target */ "libomptarget.rtl.ve.so",
27-
/* PowerPC target */ "libomptarget.rtl.ppc64.so",
28-
/* x86_64 target */ "libomptarget.rtl.x86_64.so",
29-
/* CUDA target */ "libomptarget.rtl.cuda.so",
30-
/* AArch64 target */ "libomptarget.rtl.aarch64.so",
31-
/* AMDGPU target */ "libomptarget.rtl.amdgpu.so",
31+
/* AMDGPU target */ "libomptarget.rtl.amdgpu.so",
3232
};
3333

3434
RTLsTy *RTLs;

0 commit comments

Comments
 (0)