Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 5 Apr 2012 15:16:51 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r233923 - head/contrib/gcc
Message-ID:  <201204051516.q35FGp3H063903@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pfg
Date: Thu Apr  5 15:16:51 2012
New Revision: 233923
URL: http://svn.freebsd.org/changeset/base/233923

Log:
  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

Modified:
  head/contrib/gcc/ChangeLog.gcc43
  head/contrib/gcc/builtins.c

Modified: head/contrib/gcc/ChangeLog.gcc43
==============================================================================
--- head/contrib/gcc/ChangeLog.gcc43	Thu Apr  5 10:38:07 2012	(r233922)
+++ head/contrib/gcc/ChangeLog.gcc43	Thu Apr  5 15:16:51 2012	(r233923)
@@ -169,3 +169,8 @@
 	* doc/extend.texi: Document SSSE3 built-in functions.
 
 	* doc/invoke.texi: Document -mssse3/-mno-ssse3 switches.
+
+2006-10-21  Richard Guenther  <rguenther@suse.de>
+
+	* builtins.c (fold_builtin_classify): Fix typo.
+

Modified: head/contrib/gcc/builtins.c
==============================================================================
--- head/contrib/gcc/builtins.c	Thu Apr  5 10:38:07 2012	(r233922)
+++ head/contrib/gcc/builtins.c	Thu Apr  5 15:16:51 2012	(r233923)
@@ -8738,7 +8738,7 @@ fold_builtin_classify (tree fndecl, tree
     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)
 	{



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201204051516.q35FGp3H063903>