summaryrefslogtreecommitdiff
path: root/mpi/i386
diff options
context:
space:
mode:
Diffstat (limited to 'mpi/i386')
-rw-r--r--mpi/i386/mpih-lshift.S2
-rw-r--r--mpi/i386/mpih-rshift.S2
2 files changed, 2 insertions, 2 deletions
diff --git a/mpi/i386/mpih-lshift.S b/mpi/i386/mpih-lshift.S
index 417caf15..bf8ed9d4 100644
--- a/mpi/i386/mpih-lshift.S
+++ b/mpi/i386/mpih-lshift.S
@@ -59,7 +59,7 @@ C_SYMBOL_NAME(_gcry_mpih_lshift:)
decl %edx
jz Lend
pushl %eax /* push carry limb onto stack */
- testb $1,%edx
+ testb $1,%dl
jnz L1 /* enter loop in the middle */
movl %ebx,%eax
diff --git a/mpi/i386/mpih-rshift.S b/mpi/i386/mpih-rshift.S
index 456c348c..2920e55d 100644
--- a/mpi/i386/mpih-rshift.S
+++ b/mpi/i386/mpih-rshift.S
@@ -62,7 +62,7 @@ C_SYMBOL_NAME(_gcry_mpih_rshift:)
incl %edx
jz Lend2
pushl %eax /* push carry limb onto stack */
- testb $1,%edx
+ testb $1,%dl
jnz L2 /* enter loop in the middle */
movl %ebx,%eax