|
6 | 6 | */ |
7 | 7 |
|
8 | 8 | #if defined(MS_WIN32) && !defined(MS_WIN64) && defined(_M_IX86) |
9 | | -#include "switch_x86_msvc.h" /* MS Visual Studio on X86 */ |
| 9 | +#include "internal/slp_switch_x86_msvc.h" /* MS Visual Studio on X86 */ |
10 | 10 | #elif defined(MS_WIN64) && defined(_M_X64) |
11 | | -#include "switch_x64_msvc.h" /* MS Visual Studio on X64 */ |
| 11 | +#include "internal/slp_switch_x64_msvc.h" /* MS Visual Studio on X64 */ |
12 | 12 | #elif defined(__GNUC__) && defined(__i386__) |
13 | | -#include "switch_x86_unix.h" /* gcc on X86 */ |
| 13 | +#include "internal/slp_switch_x86_unix.h" /* gcc on X86 */ |
14 | 14 | #elif defined(__GNUC__) && defined(__amd64__) |
15 | | -#include "switch_amd64_unix.h" /* gcc on amd64 */ |
| 15 | +#include "internal/slp_switch_amd64_unix.h" /* gcc on amd64 */ |
16 | 16 | #elif defined(__GNUC__) && defined(__PPC__) && defined(__linux__) |
17 | | -#include "switch_ppc_unix.h" /* gcc on PowerPC */ |
| 17 | +#include "internal/slp_switch_ppc_unix.h" /* gcc on PowerPC */ |
18 | 18 | #elif defined(__GNUC__) && defined(__ppc__) && defined(__APPLE__) |
19 | | -#include "switch_ppc_macosx.h" /* Apple MacOS X on PowerPC */ |
| 19 | +#include "internal/slp_switch_ppc_macosx.h" /* Apple MacOS X on PowerPC */ |
20 | 20 | #elif defined(__GNUC__) && defined(sparc) && defined(sun) |
21 | | -#include "switch_sparc_sun_gcc.h" /* SunOS sparc with gcc */ |
| 21 | +#include "internal/slp_switch_sparc_sun_gcc.h" /* SunOS sparc with gcc */ |
22 | 22 | #elif defined(__GNUC__) && defined(__s390__) && defined(__linux__) |
23 | | -#include "switch_s390_unix.h" /* Linux/S390 */ |
| 23 | +#include "internal/slp_switch_s390_unix.h" /* Linux/S390 */ |
24 | 24 | #elif defined(__GNUC__) && defined(__s390x__) && defined(__linux__) |
25 | | -#include "switch_s390_unix.h" /* Linux/S390 zSeries (identical) */ |
| 25 | +#include "internal/slp_switch_s390_unix.h" /* Linux/S390 zSeries (identical) */ |
26 | 26 | #elif defined(__GNUC__) && defined(__arm__) && defined(__thumb__) |
27 | | -#include "switch_arm_thumb_gcc.h" /* gcc using arm thumb */ |
| 27 | +#include "internal/slp_switch_arm_thumb_gcc.h" /* gcc using arm thumb */ |
28 | 28 | #elif defined(__GNUC__) && defined(__arm32__) |
29 | | -#include "switch_arm32_gcc.h" /* gcc using arm32 */ |
| 29 | +#include "internal/slp_switch_arm32_gcc.h" /* gcc using arm32 */ |
30 | 30 | #elif defined(__GNUC__) && defined(__mips__) && defined(__linux__) |
31 | | -#include "switch_mips_unix.h" /* MIPS */ |
| 31 | +#include "internal/slp_switch_mips_unix.h" /* MIPS */ |
32 | 32 | #elif defined(SN_TARGET_PS3) |
33 | | -#include "switch_ps3_SNTools.h" /* Sony PS3 */ |
| 33 | +#include "internal/slp_switch_ps3_SNTools.h" /* Sony PS3 */ |
34 | 34 | #endif |
35 | 35 |
|
36 | 36 | /* default definitions if not defined in above files */ |
|
0 commit comments