aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/asm_x86_32
Commit message (Collapse)AuthorAgeFilesLines
* Fix the problem that prevented the SSE2 IDEA implementation fromlloyd2011-05-121-1/+0
| | | | | | | | | | working correctly under Clang - the technique for emulating unsigned compare relied on signed overflow. The new method does not, and works under GCC, ICC, and Clang. Even better, the compare takes only 2 instructions instead of 4. Prevent using any of the asm implementations under Clang on x86-32. All of them crash under Clang 2.9, unclear why.
* Rename all references of ia32 to x86-32 and amd64 to x86-64.lloyd2011-04-222-0/+157
Back the reported version from 1.10.0 to 1.9.17 for the time being. Still on the fence if this will be 1.10.0 or another release candidate instead.