1
0
Fork 0
forked from len0rd/rockbox

arm: add support for processors with hardware division

ARMv7-M has hardware division, so it doesn't require __div0
or any support functions for 32-bit division.

Change-Id: I840683a1a77d737f378899ca4bcf858216b81014
This commit is contained in:
Aidan MacDonald 2025-01-10 16:30:22 +00:00 committed by Solomon Peachy
parent 7e8a818d95
commit 639b587fc7
12 changed files with 25 additions and 14 deletions

View file

@ -1,8 +1,10 @@
predictor.c
#ifdef CPU_ARM
#if defined(CPU_ARM)
predictor-arm.S
#if !defined(ARM_HAVE_HW_DIV)
udiv32_arm.S
#elif defined CPU_COLDFIRE
#endif
#elif defined(CPU_COLDFIRE)
predictor-cf.S
#endif
entropy.c