Commit b57051b2 by Kaveh R. Ghazi Committed by Kaveh Ghazi

convert.c (convert_to_real): Fix typos in `long double' builtins.

	* convert.c (convert_to_real): Fix typos in `long double'
	builtins.

From-SVN: r79571
parent 88020bd8
2004-03-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* convert.c (convert_to_real): Fix typos in `long double'
builtins.
2004-03-16 Mark Mitchell <mark@codesourcery.com>
PR c++/14481
......
......@@ -174,9 +174,9 @@ convert_to_real (tree type, tree expr)
if (optimize
&& (((fcode == BUILT_IN_FLOORL
|| fcode == BUILT_IN_CEILL
|| fcode == BUILT_IN_ROUND
|| fcode == BUILT_IN_TRUNC
|| fcode == BUILT_IN_NEARBYINT)
|| fcode == BUILT_IN_ROUNDL
|| fcode == BUILT_IN_TRUNCL
|| fcode == BUILT_IN_NEARBYINTL)
&& (TYPE_MODE (type) == TYPE_MODE (double_type_node)
|| TYPE_MODE (type) == TYPE_MODE (float_type_node)))
|| ((fcode == BUILT_IN_FLOOR
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment