diff options
Diffstat (limited to 'sysdeps/i386/i586/mul_1.S')
-rw-r--r-- | sysdeps/i386/i586/mul_1.S | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/i386/i586/mul_1.S b/sysdeps/i386/i586/mul_1.S index 905e65cb58..e2f7f6ce6c 100644 --- a/sysdeps/i386/i586/mul_1.S +++ b/sysdeps/i386/i586/mul_1.S @@ -1,6 +1,6 @@ /* Pentium __mpn_mul_1 -- Multiply a limb vector with a limb and store the result in a second limb vector. - Copyright (C) 1992, 1994, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1992, 94, 96, 97, 98 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify @@ -34,10 +34,8 @@ #define size ecx #define s2_limb ebp - TEXT - ALIGN (3) - GLOBL C_SYMBOL_NAME(__mpn_mul_1) -C_SYMBOL_NAME(__mpn_mul_1:) + .text +ENTRY(__mpn_mul_1) INSN1(push,l ,R(edi)) INSN1(push,l ,R(esi)) @@ -75,3 +73,5 @@ L(oop): INSN2(adc,l ,R(ebx),$0) INSN1(pop,l ,R(esi)) INSN1(pop,l ,R(edi)) ret +#undef size +END(__mpn_mul_1) |