diff options
Diffstat (limited to 'sysdeps/m68k/sub_n.S')
-rw-r--r-- | sysdeps/m68k/sub_n.S | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/sysdeps/m68k/sub_n.S b/sysdeps/m68k/sub_n.S index f94b0c7282..92fb47a4c3 100644 --- a/sysdeps/m68k/sub_n.S +++ b/sysdeps/m68k/sub_n.S @@ -1,7 +1,7 @@ /* mc68020 __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and store difference in a third 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_sub_n) - -C_SYMBOL_NAME(__mpn_sub_n:) -PROLOG(__mpn_sub_n) +ENTRY(__mpn_sub_n) /* Save used registers on the stack. */ movel R(d2),MEM_PREDEC(sp) movel R(a2),MEM_PREDEC(sp) @@ -77,4 +73,4 @@ L(L2:) movel MEM_POSTINC(sp),R(d2) rts -EPILOG(__mpn_sub_n) +END(__mpn_sub_n) |