summaryrefslogtreecommitdiff
path: root/src/math/i386/remquo.s
AgeCommit message (Collapse)AuthorLines
2012-03-27math: fix typo in i386 remquof and remquol asmnsz-5/+5
(fldl instruction was used instead of flds and fldt)
2012-03-19remquo asm: return quotient mod 8, as intended by the specRich Felker-17/+26
this is a lot more efficient and also what is generally wanted. perhaps the bit shuffling could be more efficient...
2012-03-19asm for remquoRich Felker-0/+41
this could perhaps use some additional testing for corner cases, but it seems to be correct.