]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* sysdeps/x86_64/fpu/s_copysignf.S (__copysignf): Switch to .text.
authorUlrich Drepper <drepper@redhat.com>
Thu, 16 Nov 2006 20:40:27 +0000 (20:40 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 16 Nov 2006 20:40:27 +0000 (20:40 +0000)
* sysdeps/x86_64/fpu/s_copysign.S (__copysign): Likewise.
(signmask): Add .size directive.
(othermask): Add .type directive.

ChangeLog
sysdeps/x86_64/fpu/s_copysign.S
sysdeps/x86_64/fpu/s_copysignf.S

index a7e67e38ab0cd3dd12355d96c7993f3881b30dff..e4fc084d668cd0dfbca8df91d0613537eac9f0c7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-11-16  Jakub Jelinek  <jakub@redhat.com>
+
+       * sysdeps/x86_64/fpu/s_copysignf.S (__copysignf): Switch to .text.
+       * sysdeps/x86_64/fpu/s_copysign.S (__copysign): Likewise.
+       (signmask): Add .size directive.
+       (othermask): Add .type directive.
+
 2006-11-14  Ulrich Drepper  <drepper@redhat.com>
 
        * po/nl.po: Update from translation team.
index f1ebcf8bf19ab646dede1bdb54b1a6418fde2e1c..f3d9b0cbb4bde10bd0f61cc55dcd1fc076f95d8c 100644 (file)
@@ -1,5 +1,5 @@
 /* copy sign, double version.
-   Copyright (C) 2002 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Andreas Jaeger <aj@suse.de>, 2002.
 
@@ -31,6 +31,8 @@
 signmask:
        .byte 0, 0, 0, 0, 0, 0, 0, 0x80
        .byte 0, 0, 0, 0, 0, 0, 0, 0
+       ASM_SIZE_DIRECTIVE(signmask)
+       ASM_TYPE_DIRECTIVE(othermask,@object)
 othermask:
        .byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f
        .byte 0, 0, 0, 0, 0, 0, 0, 0
@@ -42,6 +44,7 @@ othermask:
 #define MO(op) op
 #endif
 
+       .text
 ENTRY(__copysign)
        andpd MO(othermask),%xmm0
        andpd MO(signmask),%xmm1
index f5dc5f78ad97019a8bac26fb56b2f76d8040e7b9..0fbe1d4c9607e163c1b2d3c5b33af60748f503ef 100644 (file)
@@ -1,5 +1,5 @@
 /* copy sign, double version.
-   Copyright (C) 2002 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Andreas Jaeger <aj@suse.de>, 2002.
 
@@ -38,6 +38,7 @@ mask:
 #define MO(op) op
 #endif
 
+       .text
 ENTRY(__copysignf)
        movss   MO(mask),%xmm3
        andps   %xmm3,%xmm0