Skip to content

Commit

Permalink
Merge pull request #76 from barracuda156/ppc
Browse files Browse the repository at this point in the history
axml.c: fix macros for powerpc
  • Loading branch information
stamatak authored Jul 24, 2024
2 parents 0051636 + d095f6f commit 8ee5879
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions axml.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@

#endif

#if ! (defined(__ppc) || defined(__powerpc__) || defined(PPC) || defined(__aarch64__))
#if ! (defined(__ppc) || defined(__powerpc__) || defined(__POWERPC__) || defined(PPC) || defined(__aarch64__))
#include <xmmintrin.h>
/*
special bug fix, enforces denormalized numbers to be flushed to zero,
Expand Down Expand Up @@ -13709,7 +13709,7 @@ int main (int argc, char *argv[])



#if ! (defined(__ppc) || defined(__powerpc__) || defined(PPC))
#if ! (defined(__ppc) || defined(__powerpc__) || defined(__POWERPC__) || defined(PPC))

/*
David Defour's command
Expand Down

0 comments on commit 8ee5879

Please sign in to comment.