* src/sfnt/pngshim.c (premultiply_data): Optimize for __SSE__ only.

This commit is contained in:
Alexei Podtelezhnikov 2019-10-10 22:04:50 -04:00
parent 545a481a74
commit 90a30f154a
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2019-10-10 Alexei Podtelezhnikov <apodtele@gmail.com>
* src/sfnt/pngshim.c (premultiply_data): Optimize for __SSE__ only.
2019-10-10 Werner Lemberg <wl@gnu.org>
* src/sfnt/sfwoff2.c (reconstruct_glyf): Check `triplet_size'.

View File

@ -68,6 +68,7 @@
( ( __clang_major__ >= 4 ) || \
( ( __clang_major__ == 3 ) && ( __clang_minor__ >= 2 ) ) ) ) ) && \
defined( __OPTIMIZE__ ) && \
defined( __SSE__ ) && \
__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
#ifdef __clang__