public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug math/6806] y0(), y1(), yn() do not raise exception on underflow
       [not found] <bug-6806-131@http.sourceware.org/bugzilla/>
@ 2012-03-01 17:51 ` jsm28 at gcc dot gnu.org
  2013-11-28 16:56 ` jsm28 at gcc dot gnu.org
  1 sibling, 0 replies; 6+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2012-03-01 17:51 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=6806

Joseph Myers <jsm28 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|aj at suse dot de           |unassigned at sourceware
                   |                            |dot org

--- Comment #5 from Joseph Myers <jsm28 at gcc dot gnu.org> 2012-03-01 17:51:07 UTC ---
See http://sourceware.org/ml/libc-alpha/2012-02/msg00512.html - the correct
result won't underflow in these cases but in whatever cases TLOSS errors are
given I suppose underflow should be raised as well.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug math/6806] y0(), y1(), yn() do not raise exception on underflow
       [not found] <bug-6806-131@http.sourceware.org/bugzilla/>
  2012-03-01 17:51 ` [Bug math/6806] y0(), y1(), yn() do not raise exception on underflow jsm28 at gcc dot gnu.org
@ 2013-11-28 16:56 ` jsm28 at gcc dot gnu.org
  1 sibling, 0 replies; 6+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2013-11-28 16:56 UTC (permalink / raw)
  To: glibc-bugs

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

Joseph Myers <jsm28 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |INVALID

--- Comment #6 from Joseph Myers <jsm28 at gcc dot gnu.org> ---
It's now documented that exceptions may not be raised when libm is in the
(deprecated) error-handling modes that use matherr, which are the only cases
where TLOSS errors may occur (since 
commit c36e1d2369f149a64c759f3ad6f4cc5a03b03b62).

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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug math/6806] y0(), y1(), yn() do not raise exception on underflow
  2008-07-31 11:59 [Bug math/6806] New: " mtk dot manpages at gmail dot com
                   ` (2 preceding siblings ...)
  2008-07-31 12:03 ` mtk dot manpages at gmail dot com
@ 2008-07-31 12:35 ` mtk dot manpages at gmail dot com
  3 siblings, 0 replies; 6+ messages in thread
From: mtk dot manpages at gmail dot com @ 2008-07-31 12:35 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From mtk dot manpages at gmail dot com  2008-07-31 12:33 -------
In passing, it is worth noting that these functions do correctly set errno and
raise the right exception at least one other error (domain error).

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=6806

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug math/6806] y0(), y1(), yn() do not raise exception on underflow
  2008-07-31 11:59 [Bug math/6806] New: " mtk dot manpages at gmail dot com
  2008-07-31 12:02 ` [Bug math/6806] " mtk dot manpages at gmail dot com
  2008-07-31 12:02 ` mtk dot manpages at gmail dot com
@ 2008-07-31 12:03 ` mtk dot manpages at gmail dot com
  2008-07-31 12:35 ` mtk dot manpages at gmail dot com
  3 siblings, 0 replies; 6+ messages in thread
From: mtk dot manpages at gmail dot com @ 2008-07-31 12:03 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From mtk dot manpages at gmail dot com  2008-07-31 12:02 -------
Created an attachment (id=2876)
 --> (http://sourceware.org/bugzilla/attachment.cgi?id=2876&action=view)
test program

Sample runs demonstrating the problem

$ /tmp/mt_y0 dbl_max
errno == ERANGE
fetestexcept() says:  FE_INEXACT
y0(1.79769313486231571e+308)=0.00000000000000000e+00
ERANGE 0 +0

$ /tmp/mt_y1 dbl_max
errno == ERANGE
fetestexcept() says:  FE_INEXACT
y1(1.79769313486231571e+308)=0.00000000000000000e+00
ERANGE 0 +0

$ /tmp/mt_yn 10 dbl_max
errno == ERANGE
fetestexcept() says:  FE_INEXACT
yn(10,1.79769313486231571e+308)=0.00000000000000000e+00
ERANGE 0 +0


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=6806

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug math/6806] y0(), y1(), yn() do not raise exception on underflow
  2008-07-31 11:59 [Bug math/6806] New: " mtk dot manpages at gmail dot com
  2008-07-31 12:02 ` [Bug math/6806] " mtk dot manpages at gmail dot com
@ 2008-07-31 12:02 ` mtk dot manpages at gmail dot com
  2008-07-31 12:03 ` mtk dot manpages at gmail dot com
  2008-07-31 12:35 ` mtk dot manpages at gmail dot com
  3 siblings, 0 replies; 6+ messages in thread
From: mtk dot manpages at gmail dot com @ 2008-07-31 12:02 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From mtk dot manpages at gmail dot com  2008-07-31 12:01 -------
Created an attachment (id=2875)
 --> (http://sourceware.org/bugzilla/attachment.cgi?id=2875&action=view)
test program


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=6806

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug math/6806] y0(), y1(), yn() do not raise exception on underflow
  2008-07-31 11:59 [Bug math/6806] New: " mtk dot manpages at gmail dot com
@ 2008-07-31 12:02 ` mtk dot manpages at gmail dot com
  2008-07-31 12:02 ` mtk dot manpages at gmail dot com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: mtk dot manpages at gmail dot com @ 2008-07-31 12:02 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From mtk dot manpages at gmail dot com  2008-07-31 12:00 -------
Created an attachment (id=2874)
 --> (http://sourceware.org/bugzilla/attachment.cgi?id=2874&action=view)
test program


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=6806

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-11-28 16:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-6806-131@http.sourceware.org/bugzilla/>
2012-03-01 17:51 ` [Bug math/6806] y0(), y1(), yn() do not raise exception on underflow jsm28 at gcc dot gnu.org
2013-11-28 16:56 ` jsm28 at gcc dot gnu.org
2008-07-31 11:59 [Bug math/6806] New: " mtk dot manpages at gmail dot com
2008-07-31 12:02 ` [Bug math/6806] " mtk dot manpages at gmail dot com
2008-07-31 12:02 ` mtk dot manpages at gmail dot com
2008-07-31 12:03 ` mtk dot manpages at gmail dot com
2008-07-31 12:35 ` mtk dot manpages at gmail dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).