diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-02-08 02:03:10 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-02-08 02:03:10 +0000 |
commit | a6ee1783327acdaae31cc4ce700e2983f0175e5d (patch) | |
tree | d34ef7b159b4cc0257b74872f39779726ff48c62 /ports/sysdeps/mips/mips64/submul_1.S | |
parent | f3aae3f3eb4e4345413dc238e941cdb52f747d16 (diff) | |
download | glibc-a6ee1783327acdaae31cc4ce700e2983f0175e5d.tar glibc-a6ee1783327acdaae31cc4ce700e2983f0175e5d.tar.gz glibc-a6ee1783327acdaae31cc4ce700e2983f0175e5d.tar.bz2 glibc-a6ee1783327acdaae31cc4ce700e2983f0175e5d.zip |
Use ENTRY and END in more MIPS .S files.
Diffstat (limited to 'ports/sysdeps/mips/mips64/submul_1.S')
-rw-r--r-- | ports/sysdeps/mips/mips64/submul_1.S | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ports/sysdeps/mips/mips64/submul_1.S b/ports/sysdeps/mips/mips64/submul_1.S index 22239d52b3..bf5d6ffce0 100644 --- a/ports/sysdeps/mips/mips64/submul_1.S +++ b/ports/sysdeps/mips/mips64/submul_1.S @@ -33,11 +33,7 @@ #ifdef __PIC__ .option pic2 #endif - .text - .align 4 - .globl __mpn_submul_1 - .ent __mpn_submul_1 -__mpn_submul_1: +ENTRY (__mpn_submul_1) #ifdef __PIC__ SETUP_GP /* ??? unused */ #endif @@ -103,4 +99,4 @@ L(LC0): ld $10,0($4) j $31 daddu $2,$9,$2 # add high product limb and carry from addition - .end __mpn_submul_1 +END (__mpn_submul_1) |