]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/i386/fpu/s_cbrtf.S
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / i386 / fpu / s_cbrtf.S
index 919004384564eeaeb79627890d1df919bafe5bd9..ba6a029a35f3b1d7f5d93eb3c6dafebb0d6f4e0d 100644 (file)
@@ -1,5 +1,5 @@
 /* Compute cubic root of float value.
-   Copyright (C) 1997, 2005, 2012 Free Software Foundation, Inc.
+   Copyright (C) 1997-2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Dirk Alboth <dirka@uni-paderborn.de> and
    Ulrich Drepper <drepper@cygnus.com>, 1997.
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #include <machine/asm.h>
 
         .section .rodata
 
         .align ALIGNARG(4)
-        ASM_TYPE_DIRECTIVE(f3,@object)
+        .type f3,@object
 f3:    .double 0.191502161678719066
         ASM_SIZE_DIRECTIVE(f3)
-        ASM_TYPE_DIRECTIVE(f2,@object)
+        .type f2,@object
 f2:    .double 0.697570460207922770
         ASM_SIZE_DIRECTIVE(f2)
-        ASM_TYPE_DIRECTIVE(f1,@object)
+        .type f1,@object
 f1:    .double 0.492659620528969547
         ASM_SIZE_DIRECTIVE(f1)
 
@@ -39,7 +38,7 @@ f1:   .double 0.492659620528969547
 #define SQR_CBRT2      1.5874010519681994748
 #define ONE_SQR_CBRT2  0.629960524947436582364439673883
 
-       ASM_TYPE_DIRECTIVE(factor,@object)
+       .type factor,@object
         .align ALIGNARG(4)
 factor:        .double ONE_SQR_CBRT2
        .double ONE_CBRT2
@@ -48,7 +47,7 @@ factor:       .double ONE_SQR_CBRT2
        .double SQR_CBRT2
        ASM_SIZE_DIRECTIVE(factor)
 
-        ASM_TYPE_DIRECTIVE(two25,@object)
+        .type two25,@object
 two25: .byte 0, 0, 0, 0x4c
         ASM_SIZE_DIRECTIVE(two25)