]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix comment formatting in new optimized sparc math files.
authorDavid S. Miller <davem@davemloft.net>
Mon, 27 Feb 2012 23:24:09 +0000 (15:24 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 27 Feb 2012 23:26:06 +0000 (15:26 -0800)
ChangeLog
sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S
sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S
sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S
sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S
sysdeps/sparc/sparc64/fpu/s_ceil.S
sysdeps/sparc/sparc64/fpu/s_ceilf.S
sysdeps/sparc/sparc64/fpu/s_rint.S
sysdeps/sparc/sparc64/fpu/s_rintf.S

index 3d1686b13c8fe876c1e487c898e655f23e380db4..cd409b28abf936401979f7677b4d7004f1ad9516 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2012-02-27  David S. Miller  <davem@davemloft.net>
+
+       * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix comment formatting.
+       * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
+       * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
+       * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: Likewise.
+       * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
+       * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
+       * sysdeps/sparc/sparc64/fpu/s_rint.S: Likewise.
+       * sysdeps/sparc/sparc64/fpu/s_rintf.S: Likewise.
+
 2012-02-27  Joseph Myers  <joseph@codesourcery.com>
 
        * configure.in (CC): Restrict allowed GCC versions to 4.3 and
index 7364f827d240a9f2e1f7536322647e6b761088e2..5e32b68aaccb090d2a6e9aec39cbdadd6f620bf8 100644 (file)
 #include <sysdep.h>
 
        /* Since changing the rounding mode is extremely expensive, we
-        * try to round up using a method that is rounding mode
-        * agnostic.
-        *
-        * We add then subtract (or subtract than add if the initial
-        * value was negative) 2**23 to the value, then subtract it
-        * back out.
-        *
-        * This will clear out the fractional portion of the value.
-        * One of two things will happen for non-whole initial values.
-        * Either the rounding mode will round it up, or it will be
-        * rounded down.  If the value started out whole, it will be
-        * equal after the addition and subtraction.  This means we
-        * can accurately detect with one test whether we need to add
-        * another 1.0 to round it up properly.
-        *
-        * We pop constants into the FPU registers using the incoming
-        * argument stack slots, since this avoid having to use any PIC
-        * references.  We also thus avoid having to allocate a register
-        * window.
-        *
-        * VIS instructions are used to facilitate the formation of
-        * easier constants, and the propagation of the sign bit.
-        */
+          try to round up using a method that is rounding mode
+          agnostic.
+
+          We add then subtract (or subtract than add if the initial
+          value was negative) 2**23 to the value, then subtract it
+          back out.
+
+          This will clear out the fractional portion of the value.
+          One of two things will happen for non-whole initial values.
+          Either the rounding mode will round it up, or it will be
+          rounded down.  If the value started out whole, it will be
+          equal after the addition and subtraction.  This means we
+          can accurately detect with one test whether we need to add
+          another 1.0 to round it up properly.
+
+          We pop constants into the FPU registers using the incoming
+          argument stack slots, since this avoid having to use any
+          PIC references.  We also thus avoid having to allocate a
+          register window.
+
+          VIS instructions are used to facilitate the formation of
+          easier constants, and the propagation of the sign bit.  */
 
 #define TWO_FIFTYTWO   0x43300000              /* 2**52 */
 #define ONE_DOT_ZERO   0x3ff00000              /* 1.0 */
index fbc6faa7d79b54f2661975b1499026bce9e94d4a..e5129fdba18030e8c81a0d9cf9d6325b8c72684a 100644 (file)
 #include <sysdep.h>
 
        /* Since changing the rounding mode is extremely expensive, we
-        * try to round up using a method that is rounding mode
-        * agnostic.
-        *
-        * We add then subtract (or subtract than add if the initial
-        * value was negative) 2**23 to the value, then subtract it
-        * back out.
-        *
-        * This will clear out the fractional portion of the value.
-        * One of two things will happen for non-whole initial values.
-        * Either the rounding mode will round it up, or it will be
-        * rounded down.  If the value started out whole, it will be
-        * equal after the addition and subtraction.  This means we
-        * can accurately detect with one test whether we need to add
-        * another 1.0 to round it up properly.
-        *
-        * We pop constants into the FPU registers using the incoming
-        * argument stack slots, since this avoid having to use any PIC
-        * references.  We also thus avoid having to allocate a register
-        * window.
-        *
-        * VIS instructions are used to facilitate the formation of
-        * easier constants, and the propagation of the sign bit.
-        */
+          try to round up using a method that is rounding mode
+          agnostic.
+
+          We add then subtract (or subtract than add if the initial
+          value was negative) 2**23 to the value, then subtract it
+          back out.
+
+          This will clear out the fractional portion of the value.
+          One of two things will happen for non-whole initial values.
+          Either the rounding mode will round it up, or it will be
+          rounded down.  If the value started out whole, it will be
+          equal after the addition and subtraction.  This means we
+          can accurately detect with one test whether we need to add
+          another 1.0 to round it up properly.
+
+          We pop constants into the FPU registers using the incoming
+          argument stack slots, since this avoid having to use any
+          PIC references.  We also thus avoid having to allocate a
+          register window.
+
+          VIS instructions are used to facilitate the formation of
+          easier constants, and the propagation of the sign bit.  */
 
 #define TWO_TWENTYTHREE        0x4b000000              /* 2**23 */
 #define ONE_DOT_ZERO   0x3f800000              /* 1.0 */
index 8cae9b8ba74a17dd3cb748f6db06024d7fdeadc5..9f9fddd462a74bf07d37d432238afcab5d4c1dd4 100644 (file)
 #include <sysdep.h>
 
        /* We pop constants into the FPU registers using the incoming
-        * argument stack slots, since this avoid having to use any PIC
-        * references.  We also thus avoid having to allocate a register
-        * window.
-        *
-        * VIS instructions are used to facilitate the formation of
-        * easier constants, and the propagation of the sign bit.
-        */
+          argument stack slots, since this avoid having to use any PIC
+          references.  We also thus avoid having to allocate a register
+          window.
+
+          VIS instructions are used to facilitate the formation of
+          easier constants, and the propagation of the sign bit.  */
 
 #define TWO_FIFTYTWO   0x43300000              /* 2**52 */
 
index 2e67fa72ef28dc38b9ab7a1c72a11ff44ff9633c..c053c55b8d3899658b231b48325380306c49b14c 100644 (file)
 #include <sysdep.h>
 
        /* We pop constants into the FPU registers using the incoming
-        * argument stack slots, since this avoid having to use any PIC
-        * references.  We also thus avoid having to allocate a register
-        * window.
-        *
-        * VIS instructions are used to facilitate the formation of
-        * easier constants, and the propagation of the sign bit.
-        */
+          argument stack slots, since this avoid having to use any PIC
+          references.  We also thus avoid having to allocate a register
+          window.
+
+          VIS instructions are used to facilitate the formation of
+          easier constants, and the propagation of the sign bit.  */
 
 #define TWO_TWENTYTHREE        0x4b000000              /* 2**23 */
 
index 7e9bfef06a2a189e350e15afa97d0732d64541dd..85d1a3cbd15b6c98f58f711e6e9ecdf256440c19 100644 (file)
 #include <sysdep.h>
 
        /* Since changing the rounding mode is extremely expensive, we
-        * try to round up using a method that is rounding mode
-        * agnostic.
-        *
-        * We add then subtract (or subtract than add if the initial
-        * value was negative) 2**23 to the value, then subtract it
-        * back out.
-        *
-        * This will clear out the fractional portion of the value.
-        * One of two things will happen for non-whole initial values.
-        * Either the rounding mode will round it up, or it will be
-        * rounded down.  If the value started out whole, it will be
-        * equal after the addition and subtraction.  This means we
-        * can accurately detect with one test whether we need to add
-        * another 1.0 to round it up properly.
-        *
-        * We pop constants into the FPU registers using the incoming
-        * argument stack slots, since this avoid having to use any PIC
-        * references.  We also thus avoid having to allocate a register
-        * window.
-        *
-        * VIS instructions are used to facilitate the formation of
-        * easier constants, and the propagation of the sign bit.
-        */
+          try to round up using a method that is rounding mode
+          agnostic.
+
+          We add then subtract (or subtract than add if the initial
+          value was negative) 2**23 to the value, then subtract it
+          back out.
+
+          This will clear out the fractional portion of the value.
+          One of two things will happen for non-whole initial values.
+          Either the rounding mode will round it up, or it will be
+          rounded down.  If the value started out whole, it will be
+          equal after the addition and subtraction.  This means we
+          can accurately detect with one test whether we need to add
+          another 1.0 to round it up properly.
+
+          We pop constants into the FPU registers using the incoming
+          argument stack slots, since this avoid having to use any
+          PIC references.  We also thus avoid having to allocate a
+          register window.
+
+          VIS instructions are used to facilitate the formation of
+          easier constants, and the propagation of the sign bit.  */
 
 #define TWO_FIFTYTWO   0x43300000              /* 2**52 */
 #define ONE_DOT_ZERO   0x3ff00000              /* 1.0 */
index 1ae7f7ad714d0bd22a41a96a29a24fe3cbbce047..dd5c2f0c790010b7840a54bbd7951f149c02bd04 100644 (file)
 #include <sysdep.h>
 
        /* Since changing the rounding mode is extremely expensive, we
-        * try to round up using a method that is rounding mode
-        * agnostic.
-        *
-        * We add then subtract (or subtract than add if the initial
-        * value was negative) 2**23 to the value, then subtract it
-        * back out.
-        *
-        * This will clear out the fractional portion of the value.
-        * One of two things will happen for non-whole initial values.
-        * Either the rounding mode will round it up, or it will be
-        * rounded down.  If the value started out whole, it will be
-        * equal after the addition and subtraction.  This means we
-        * can accurately detect with one test whether we need to add
-        * another 1.0 to round it up properly.
-        *
-        * We pop constants into the FPU registers using the incoming
-        * argument stack slots, since this avoid having to use any PIC
-        * references.  We also thus avoid having to allocate a register
-        * window.
-        *
-        * VIS instructions are used to facilitate the formation of
-        * easier constants, and the propagation of the sign bit.
-        */
+          try to round up using a method that is rounding mode
+          agnostic.
+
+          We add then subtract (or subtract than add if the initial
+          value was negative) 2**23 to the value, then subtract it
+          back out.
+
+          This will clear out the fractional portion of the value.
+          One of two things will happen for non-whole initial values.
+          Either the rounding mode will round it up, or it will be
+          rounded down.  If the value started out whole, it will be
+          equal after the addition and subtraction.  This means we
+          can accurately detect with one test whether we need to add
+          another 1.0 to round it up properly.
+
+          We pop constants into the FPU registers using the incoming
+          argument stack slots, since this avoid having to use any
+          PIC references.  We also thus avoid having to allocate a
+          register window.
+
+          VIS instructions are used to facilitate the formation of
+          easier constants, and the propagation of the sign bit.  */
 
 #define TWO_TWENTYTHREE        0x4b000000              /* 2**23 */
 #define ONE_DOT_ZERO   0x3f800000              /* 1.0 */
index 38b6135de124f87429785c4873bb135762cb6b1d..4589e2cbc0b9bb4a57c99ac5d356006fc60665bf 100644 (file)
 #include <sysdep.h>
 
        /* We pop constants into the FPU registers using the incoming
-        * argument stack slots, since this avoid having to use any PIC
-        * references.  We also thus avoid having to allocate a register
-        * window.
-        *
-        * VIS instructions are used to facilitate the formation of
-        * easier constants, and the propagation of the sign bit.
-        */
+          argument stack slots, since this avoid having to use any PIC
+          references.  We also thus avoid having to allocate a register
+          window.
+
+          VIS instructions are used to facilitate the formation of
+          easier constants, and the propagation of the sign bit.  */
 
 #define TWO_FIFTYTWO   0x43300000              /* 2**52 */
 
index 42fda3f3067981a35364d0e1e27b513f79a4f1c1..7f7caa832e1415cb9c8327b891872e587b3f214d 100644 (file)
 #include <sysdep.h>
 
        /* We pop constants into the FPU registers using the incoming
-        * argument stack slots, since this avoid having to use any PIC
-        * references.  We also thus avoid having to allocate a register
-        * window.
-        *
-        * VIS instructions are used to facilitate the formation of
-        * easier constants, and the propagation of the sign bit.
-        */
+          argument stack slots, since this avoid having to use any PIC
+          references.  We also thus avoid having to allocate a register
+          window.
+
+          VIS instructions are used to facilitate the formation of
+          easier constants, and the propagation of the sign bit.  */
 
 #define TWO_TWENTYTHREE        0x4b000000              /* 2**23 */