From: Jakub Jelinek Date: Thu, 10 May 2007 06:31:20 +0000 (+0000) Subject: * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow X-Git-Tag: cvs/fedora-glibc-20070510T0634 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1dfd7e61086c01d668af124956235bb09b26790;p=platform%2Fupstream%2Fglibc.git * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow exception in addition to inexact when asked to raise only FE_INEXACT. * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow exception in addition to inexact when asked to raise only FE_INEXACT. --- diff --git a/ChangeLog b/ChangeLog index 6c3e082..4a6d5a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-05-09 Jakub Jelinek + * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow + exception in addition to inexact when asked to raise only FE_INEXACT. + [BZ #3427] * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Don't clear exceptions in *envp. diff --git a/sysdeps/ia64/fpu/fraiseexcpt.c b/sysdeps/ia64/fpu/fraiseexcpt.c index 3086ded..12b29ee 100644 --- a/sysdeps/ia64/fpu/fraiseexcpt.c +++ b/sysdeps/ia64/fpu/fraiseexcpt.c @@ -1,5 +1,6 @@ /* Raise given exceptions. - Copyright (C) 1997, 1998, 2000, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 2000, 2001, 2002, 2007 + Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jes Sorensen , 2000. @@ -70,7 +71,7 @@ feraiseexcept (int excepts) if (FE_INEXACT & excepts) { dummy = DBL_MAX; - __asm__ __volatile__ ("fadd.d.s0 %0=%1,f1" : "=f" (dummy) : "0" (dummy)); + __asm__ __volatile__ ("fsub.d.s0 %0=%1,f1" : "=f" (dummy) : "0" (dummy)); } /* Success. */