mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Fix overflow handling in fdim.
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/* Return positive difference between arguments.
|
||||
Copyright (C) 1997, 2004 Free Software Foundation, Inc.
|
||||
Copyright (C) 1997, 2004, 2009 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
|
||||
|
||||
@ -18,6 +18,7 @@
|
||||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
02111-1307 USA. */
|
||||
|
||||
#include <errno.h>
|
||||
#include <math.h>
|
||||
|
||||
float
|
||||
@ -31,6 +32,13 @@ __fdimf (float x, float y)
|
||||
/* Raise invalid flag. */
|
||||
return x - y;
|
||||
|
||||
return x <= y ? 0 : x - y;
|
||||
if (x <= y)
|
||||
return 0.0f;
|
||||
|
||||
float r = x - y;
|
||||
if (fpclassify (r) == FP_INFINITE)
|
||||
__set_errno (ERANGE);
|
||||
|
||||
return r;
|
||||
}
|
||||
weak_alias (__fdimf, fdimf)
|
||||
|
Reference in New Issue
Block a user