diff options
Diffstat (limited to 'sysdeps/m68k/m68020/mul_1.S')
-rw-r--r-- | sysdeps/m68k/m68020/mul_1.S | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/sysdeps/m68k/m68020/mul_1.S b/sysdeps/m68k/m68020/mul_1.S index ef7d93721f..367f77faf9 100644 --- a/sysdeps/m68k/m68020/mul_1.S +++ b/sysdeps/m68k/m68020/mul_1.S @@ -1,7 +1,7 @@ /* mc68020 __mpn_mul_1 -- Multiply a limb vector with a limb and store the result in a second limb vector. -Copyright (C) 1992, 1994, 1996 Free Software Foundation, Inc. +Copyright (C) 1992, 1994, 1996, 1998 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -32,11 +32,7 @@ MA 02111-1307, USA. */ #include "asm-syntax.h" TEXT - ALIGN - GLOBL C_SYMBOL_NAME(__mpn_mul_1) - -C_SYMBOL_NAME(__mpn_mul_1:) -PROLOG(__mpn_mul_1) +ENTRY(__mpn_mul_1) #define res_ptr a0 #define s1_ptr a1 @@ -88,4 +84,4 @@ L(L1:) movel MEM_POSTINC(s1_ptr),R(d3) movel MEM_POSTINC(sp),R(d2) #endif rts -EPILOG(__mpn_mul_1) +END(__mpn_mul_1) |