diff options
author | Pedro F. Giffuni <pfg@FreeBSD.org> | 2012-04-05 15:16:51 +0000 |
---|---|---|
committer | Pedro F. Giffuni <pfg@FreeBSD.org> | 2012-04-05 15:16:51 +0000 |
commit | a90710e961fa933e80a81b668a9c668785659789 (patch) | |
tree | d9da375113f338af5bd5fa4d5596d869f026f1d8 /contrib/gcc/builtins.c | |
parent | 70542ee01f1a6e7990cb67eb03489811c103ccee (diff) |
Fix a typo in GCC affecting calculations with -ffast-math.
The fix is similar to the one applied in GCC-4.3 in
GCCSVN-r117929 under the GPLv2.
Submitted by: Andrey Simonenko
Reviewed by: mm
Approved by: jhb (mentor)
MFC after: 3 days
Notes
Notes:
svn path=/head/; revision=233923
Diffstat (limited to 'contrib/gcc/builtins.c')
-rw-r--r-- | contrib/gcc/builtins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gcc/builtins.c b/contrib/gcc/builtins.c index 2359a51208fa..a65d725bd281 100644 --- a/contrib/gcc/builtins.c +++ b/contrib/gcc/builtins.c @@ -8738,7 +8738,7 @@ fold_builtin_classify (tree fndecl, tree arglist, int builtin_index) case BUILT_IN_FINITE: if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg))) && !HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (arg)))) - return omit_one_operand (type, integer_zero_node, arg); + return omit_one_operand (type, integer_one_node, arg); if (TREE_CODE (arg) == REAL_CST) { |