diff options
author | Richard Guenther <rguenther@suse.de> | 2006-10-21 10:17:49 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2006-10-21 10:17:49 +0000 |
commit | 120a56cb6790478018765a520376d2f304bdb74c (patch) | |
tree | af97a143bcc3a3abc52048c14799981c56087ee5 /gcc/builtins.c | |
parent | bdbb046092f1e960c197c9fbc6f6fbe188f4839b (diff) | |
download | gcc-120a56cb6790478018765a520376d2f304bdb74c.zip gcc-120a56cb6790478018765a520376d2f304bdb74c.tar.gz gcc-120a56cb6790478018765a520376d2f304bdb74c.tar.bz2 |
builtins.c (fold_builtin_classify): Fix typo.
2006-10-21 Richard Guenther <rguenther@suse.de>
* builtins.c (fold_builtin_classify): Fix typo.
From-SVN: r117929
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index 0d28992..711cf41 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -8719,7 +8719,7 @@ fold_builtin_classify (tree fndecl, tree arglist, int builtin_index) case BUILT_IN_FINITE: if (!MODE_HAS_NANS (TYPE_MODE (TREE_TYPE (arg))) && !MODE_HAS_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) { |