* src/smooth/ftgrays.c (FT_DIV_MOD): Limit the ARM workaround.
This commit is contained in:
parent
a156040600
commit
0f23ae2e80
|
@ -353,7 +353,7 @@ typedef ptrdiff_t FT_PtrDist;
|
||||||
} \
|
} \
|
||||||
FT_END_STMNT
|
FT_END_STMNT
|
||||||
|
|
||||||
#ifdef __arm__
|
#if defined( __GNUC__ ) && __GNUC__ < 7 && defined( __arm__ )
|
||||||
/* Work around a bug specific to GCC which make the compiler fail to */
|
/* Work around a bug specific to GCC which make the compiler fail to */
|
||||||
/* optimize a division and modulo operation on the same parameters */
|
/* optimize a division and modulo operation on the same parameters */
|
||||||
/* into a single call to `__aeabi_idivmod'. See */
|
/* into a single call to `__aeabi_idivmod'. See */
|
||||||
|
|
Loading…
Reference in New Issue