diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2016-10-02 17:20:32 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2016-10-02 17:20:40 -0500 |
commit | 835eebc8ecd9759e4e021ef644cbffface70d8b6 (patch) | |
tree | 8019329d4cfd5950b2ba638704c7387713934536 /lib | |
parent | a7d7dbc5c401ccea3f19583b11ca59b4ec27b679 (diff) | |
download | ulab-835eebc8ecd9759e4e021ef644cbffface70d8b6.tar.gz ulab-835eebc8ecd9759e4e021ef644cbffface70d8b6.zip |
Temporarily disable FFTS AltiVec support pending update to use new data types
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ffts/src/macros.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/ffts/src/macros.h b/lib/ffts/src/macros.h index b755775..e7e349f 100644 --- a/lib/ffts/src/macros.h +++ b/lib/ffts/src/macros.h @@ -42,8 +42,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "macros-neon.h" #elif HAVE_SSE #include "macros-sse.h" -#elif __powerpc__ -#include "macros-altivec.h" +// NOTE: AltiVec support disabled until updated to provide new V4SF variable type +//#elif __powerpc__ +//#include "macros-altivec.h" #else #include "macros-alpha.h" #endif @@ -201,4 +202,4 @@ V4SF_L_4_2(int inv, #define V4SF_S_4(r0, r1, r2, r3, o0, o1, o2, o3) \ V4SF_ST(o0, r0); V4SF_ST(o1, r1); V4SF_ST(o2, r2); V4SF_ST(o3, r3); -#endif /* FFTS_MACROS_H */
\ No newline at end of file +#endif /* FFTS_MACROS_H */ |