summaryrefslogtreecommitdiffstats
path: root/otherlibs/num/bng_ia32.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2003-10-26 09:51:11 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2003-10-26 09:51:11 +0000
commit0374fb3f4331ee6de58b4b02bb8026c0f8216f25 (patch)
tree95183ce8ece82f0edaf7c9a5281076c31d50ba3a /otherlibs/num/bng_ia32.c
parentbb5ee983ab1ad27cfa3c141bcd6472d63c011a96 (diff)
Typo dans sse2_mult_sub
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5883 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/num/bng_ia32.c')
-rw-r--r--otherlibs/num/bng_ia32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/num/bng_ia32.c b/otherlibs/num/bng_ia32.c
index e0178919a..c3ca9a980 100644
--- a/otherlibs/num/bng_ia32.c
+++ b/otherlibs/num/bng_ia32.c
@@ -310,8 +310,8 @@ static bngdigit bng_ia32sse2_mult_sub_digit
out = 0;
if (blen > 0) {
/* Carry C is represented by ENC(C) = 0xFFFFFFFF - C (one's complement) */
- asm("movd %5, %%mm0 \n\t" /* MM0 is carry (initially 0xFFFFFFFF) */
- "movq %6, %%mm6 \n\t" /* MM6 is magic constant bias1 */
+ asm("movd %6, %%mm0 \n\t" /* MM0 is carry (initially 0xFFFFFFFF) */
+ "movq %5, %%mm6 \n\t" /* MM6 is magic constant bias1 */
"movd %4, %%mm7 \n\t" /* MM7 is digit d */
"1: \n\t"
"movd (%0), %%mm1 \n\t" /* MM1 is next digit of a */