forked from mirrors/gecko-dev
Bug 1896573 - Don't define WITH_SIMD on SPARC. r=tnikkel DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D210340
This commit is contained in:
parent
86147c4aef
commit
b6bdd642e0
2 changed files with 8 additions and 0 deletions
|
|
@ -19,7 +19,11 @@
|
||||||
#define MEM_SRCDST_SUPPORTED 1
|
#define MEM_SRCDST_SUPPORTED 1
|
||||||
|
|
||||||
/* Use accelerated SIMD routines. */
|
/* Use accelerated SIMD routines. */
|
||||||
|
#if defined(__sparc__)
|
||||||
|
#undef WITH_SIMD
|
||||||
|
#else
|
||||||
#define WITH_SIMD 1
|
#define WITH_SIMD 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* This version of libjpeg-turbo supports run-time selection of data precision,
|
/* This version of libjpeg-turbo supports run-time selection of data precision,
|
||||||
* so BITS_IN_JSAMPLE is no longer used to specify the data precision at build
|
* so BITS_IN_JSAMPLE is no longer used to specify the data precision at build
|
||||||
|
|
|
||||||
|
|
@ -81,6 +81,10 @@
|
||||||
/* #undef D_ARITH_CODING_SUPPORTED */
|
/* #undef D_ARITH_CODING_SUPPORTED */
|
||||||
|
|
||||||
/* Use accelerated SIMD routines. */
|
/* Use accelerated SIMD routines. */
|
||||||
|
#if defined(__sparc__)
|
||||||
|
#undef WITH_SIMD
|
||||||
|
#else
|
||||||
#define WITH_SIMD 1
|
#define WITH_SIMD 1
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue