This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug math/15479] ceil, floor and round and trunc raise inexact exception


https://sourceware.org/bugzilla/show_bug.cgi?id=15479

--- Comment #3 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  876c5bd30cf44ab47ee46c08d06e6ba9ab2b338f (commit)
      from  ac2cc6f021ae4503f1d51c2379d5551a8b05812b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=876c5bd30cf44ab47ee46c08d06e6ba9ab2b338f

commit 876c5bd30cf44ab47ee46c08d06e6ba9ab2b338f
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Tue May 24 17:44:46 2016 +0000

    Do not raise "inexact" from generic floor (bug 15479).

    C99 and C11 allow but do not require ceil, floor, round and trunc to
    raise the "inexact" exception for noninteger arguments.  TS 18661-1
    requires that this exception not be raised by these functions.  This
    aligns them with general IEEE semantics, where "inexact" is only
    raised if the final step of rounding the infinite-precision result to
    the result type is inexact; for these functions, the
    infinite-precision integer result is always representable in the
    result type, so "inexact" should never be raised.

    The generic implementations of ceil, floor and round functions contain
    code to force "inexact" to be raised.  This patch removes it for floor
    functions to align them with TS 18661-1 in this regard.  Note that
    some architecture-specific versions may still raise "inexact", so the
    tests are not updated and the bug is not yet fixed.

    Tested for x86_64, x86 and mips64.

        [BZ #15479]
        * sysdeps/ieee754/dbl-64/s_floor.c: Do not mention "inexact"
        exception in comment.
        (huge): Remove variable.
        (__floor): Do not force "inexact" exception.
        * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Do not mention
        "inexact" exception in comment.
        (huge): Remove variable.
        (__floor): Do not force "inexact" exception.
        * sysdeps/ieee754/flt-32/s_floorf.c: Do not mention "inexact"
        exception in comment.
        (huge): Remove variable.
        (__floorf): Do not force "inexact" exception.
        * sysdeps/ieee754/ldbl-128/s_floorl.c: Do not mention "inexact"
        exception in comment.
        (huge): Remove variable.
        (__floorl): Do not force "inexact" exception.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                                    |   18 ++++++++++++
 sysdeps/ieee754/dbl-64/s_floor.c             |   10 +-----
 sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c |    9 +-----
 sysdeps/ieee754/flt-32/s_floorf.c            |    9 +-----
 sysdeps/ieee754/ldbl-128/s_floorl.c          |   37 ++++++++++----------------
 5 files changed, 38 insertions(+), 45 deletions(-)

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]