in the mpn_divexact_by3.asm
we ended with

        sbb %rdx,%rcx
end:
C   lea below is  imul $-3,%rcx,%rax
lea (%rcx,%rcx,2),%rax
neg %rax
ret

and in mpn_divexact_by3.as
we have
        sbb     rcx, rdx
end:
         imul    rax, rcx, -3
       lea     rax, [rcx+rcx*2]
       neg     rax
        ret

clearly the comment was removed by accident

The really odd part is that it doesn't seem to make a difference

Jason


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"mpir-devel" group.
To post to this group, send email to mpir-devel@googlegroups.com
To unsubscribe from this group, send email to 
mpir-devel+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/mpir-devel?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to