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/rshift.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/rshift.S')
-rw-r--r-- | ports/sysdeps/mips/mips64/rshift.S | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ports/sysdeps/mips/mips64/rshift.S b/ports/sysdeps/mips/mips64/rshift.S index 75ac68bb2e..0d821f2b79 100644 --- a/ports/sysdeps/mips/mips64/rshift.S +++ b/ports/sysdeps/mips/mips64/rshift.S @@ -32,11 +32,7 @@ #ifdef __PIC__ .option pic2 #endif - .text - .align 2 - .globl __mpn_rshift - .ent __mpn_rshift -__mpn_rshift: +ENTRY (__mpn_rshift) #ifdef __PIC__ SETUP_GP /* ??? unused */ #endif @@ -98,4 +94,4 @@ L(Loop): ld $3,8($5) L(Lend): dsrl $8,$10,$7 j $31 sd $8,0($4) - .end __mpn_rshift +END (__mpn_rshift) |