diff options
author | Jukka Ojanen <jukka.ojanen@linkotec.net> | 2015-03-09 17:05:23 +0200 |
---|---|---|
committer | Jukka Ojanen <jukka.ojanen@linkotec.net> | 2015-03-09 17:05:23 +0200 |
commit | 74df6cf04b6d2fb924af6530b568275800c16258 (patch) | |
tree | 7458dee1185675c5f0be78adc3399082ad2a1d22 /src/macros.h | |
parent | 4fa682c1522ae0f3ded4ccc0efcb817c16c5f4e7 (diff) | |
download | ffts-74df6cf04b6d2fb924af6530b568275800c16258.zip ffts-74df6cf04b6d2fb924af6530b568275800c16258.tar.gz |
To support generic building, fallback using scalar macros from macros-alpha.h
Diffstat (limited to 'src/macros.h')
-rw-r--r-- | src/macros.h | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/src/macros.h b/src/macros.h index 0010534..b4a6a5a 100644 --- a/src/macros.h +++ b/src/macros.h @@ -40,20 +40,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #ifdef HAVE_NEON #include "macros-neon.h" -#else -#ifdef __alpha__ -#include "macros-alpha.h" -#else -#ifdef __powerpc__ -#include "macros-altivec.h" -#endif -#endif -#endif - -#ifdef HAVE_VFP -#include "macros-alpha.h" #elif HAVE_SSE #include "macros-sse.h" +#elif __powerpc__ +#include "macros-altivec.h" +#else +#include "macros-alpha.h" #endif static FFTS_INLINE void TX2(V *a, V *b) |