Skip to content

Commit

Permalink
Enable NEON code on more compilers.
Browse files Browse the repository at this point in the history
Newer GCCs define `__ARM_NEON` instead of `__ARM_NEON__`, apparently.
  • Loading branch information
icculus committed Aug 17, 2024
1 parent c93be85 commit 672cf6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theoraplay.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#define THEORAPLAY_MUTEX_T pthread_mutex_t *
#endif

#ifdef __ARM_NEON__
#if defined(__ARM_NEON__) || defined(__ARM_NEON)
#include <arm_neon.h>
#define THEORAPLAY_HAVE_NEON_INTRINSICS 1
#endif
Expand Down

0 comments on commit 672cf6d

Please sign in to comment.