diff options
Diffstat (limited to 'sysdeps/i386/i586/lshift.S')
-rw-r--r-- | sysdeps/i386/i586/lshift.S | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sysdeps/i386/i586/lshift.S b/sysdeps/i386/i586/lshift.S index 1d72fc901e..22dc03ea65 100644 --- a/sysdeps/i386/i586/lshift.S +++ b/sysdeps/i386/i586/lshift.S @@ -1,5 +1,5 @@ /* Pentium optimized __mpn_lshift -- - Copyright (C) 1992, 1994, 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1992, 94, 95, 96, 97, 98 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify @@ -29,9 +29,7 @@ #include "asm-syntax.h" .text - ALIGN (3) - .globl C_SYMBOL_NAME(__mpn_lshift) -C_SYMBOL_NAME(__mpn_lshift:) +ENTRY(__mpn_lshift) pushl %edi pushl %esi pushl %ebx @@ -219,3 +217,4 @@ L(L1): movl %edx,(%edi) /* store last limb */ popl %esi popl %edi ret +END(__mpn_lshift) |