From: Bruno Haible Date: Sun, 4 Nov 2007 09:17:49 +0000 (+0000) Subject: Specify instruction width explicitly. X-Git-Tag: cln_1-2-0~31 X-Git-Url: https://www.ginac.de/CLN/cln.git//cln.git?a=commitdiff_plain;h=949a405a537de942579d3b12e8afd83a2b026258;p=cln.git Specify instruction width explicitly. --- diff --git a/src/base/digitseq/cl_asm_i386_.cc b/src/base/digitseq/cl_asm_i386_.cc index 2d67b9e..4bb9e2a 100644 --- a/src/base/digitseq/cl_asm_i386_.cc +++ b/src/base/digitseq/cl_asm_i386_.cc @@ -536,7 +536,7 @@ C(compare_loop_up:) movl 4(%esp),%esi // %esi = xptr movl 8(%esp),%edi // %edi = yptr movl 12(%esp),%ecx // %ecx = count - cmp %ecx,%ecx // initialize flags for the case %ecx is 0 + cmpl %ecx,%ecx // initialize flags for the case %ecx is 0 dir0start repz // Falls %ecx > 0: cmpsl // %ecx mal aufwärts (%edi) und (%esi) vergleichen @@ -1378,7 +1378,7 @@ C(compare_loop_down:) movl 12(%esp),%ecx // %ecx = count leal -4(%esi),%esi leal -4(%edi),%edi - cmp %ecx,%ecx // initialize flags for the case %ecx is 0 + cmpl %ecx,%ecx // initialize flags for the case %ecx is 0 dir1start repz // Falls %ecx > 0: cmpsl // %ecx mal aufwärts (%edi) und (%esi) vergleichen