]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commit
softfloat: copy mod/rem quotient through uint64_t
authorStefan Reinauer <stefan.reinauer@coreboot.org>
Sun, 31 May 2026 07:32:30 +0000 (00:32 -0700)
committerStefan Reinauer <stefan.reinauer@coreboot.org>
Sun, 31 May 2026 07:32:30 +0000 (00:32 -0700)
commit9d5707ebd4d64ae0123ba64e1a18d3b219b89438
tree523310fe98cb3c6c7f44aa5e0afd8c4158375eaa
parent3c33819f098d0fb693d5e51bcfd60d47bcc5e83e
softfloat: copy mod/rem quotient through uint64_t

floatx80_mod() and floatx80_rem() take a uint64_t quotient pointer,
while the FPU wrapper stores the quotient in uae_u64. Copy through a
temporary so the call does not depend on those typedefs being the same
type on every host.
fpp_softfloat.cpp