diff options
Diffstat (limited to 'sysdeps/m68k/m68020/addmul_1.S')
-rw-r--r-- | sysdeps/m68k/m68020/addmul_1.S | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/sysdeps/m68k/m68020/addmul_1.S b/sysdeps/m68k/m68020/addmul_1.S index 4b99c21f84..7f885575c8 100644 --- a/sysdeps/m68k/m68020/addmul_1.S +++ b/sysdeps/m68k/m68020/addmul_1.S @@ -1,7 +1,7 @@ /* mc68020 __mpn_addmul_1 -- Multiply a limb vector with a limb and add the result to 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_addmul_1) - -C_SYMBOL_NAME(__mpn_addmul_1:) -PROLOG(__mpn_addmul_1) +ENTRY(__mpn_addmul_1) #define res_ptr a0 #define s1_ptr a1 @@ -81,4 +77,4 @@ L(L1:) movel MEM_POSTINC(s1_ptr),R(d3) moveml MEM_POSTINC(sp),R(d2)-R(d5) rts -EPILOG(__mpn_addmul_1) +END(__mpn_addmul_1) |