Skip to content

Commit

Permalink
Fix incorrect PPC64 detection.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoltan Herczeg committed Jul 27, 2021
1 parent 5e3b098 commit a3caf49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sljit_src/sljitConfigInternal.h
Expand Up @@ -148,7 +148,7 @@ extern "C" {
#endif
#elif defined (__aarch64__)
#define SLJIT_CONFIG_ARM_64 1
#elif defined(__ppc64__) || defined(__powerpc64__) || defined(_ARCH_PPC64) || (defined(_POWER) && defined(__64BIT__))
#elif defined(__ppc64__) || defined(__powerpc64__) || (defined(_ARCH_PPC64) && defined(__64BIT__)) || (defined(_POWER) && defined(__64BIT__))
#define SLJIT_CONFIG_PPC_64 1
#elif defined(__ppc__) || defined(__powerpc__) || defined(_ARCH_PPC) || defined(_ARCH_PWR) || defined(_ARCH_PWR2) || defined(_POWER)
#define SLJIT_CONFIG_PPC_32 1
Expand Down

0 comments on commit a3caf49

Please sign in to comment.