Commit 0ba646fe by Jan Hubicka

fold-const.c (fold): Do not return early when optimizing COMPONENT_REF and constant.

	* fold-const.c (fold):  Do not return early when optimizing COMPONENT_REF
	and constant.

From-SVN: r73870
parent 75669493
......@@ -7718,7 +7718,8 @@ fold (tree expr)
&& (optimize || TREE_CODE (arg1) == INTEGER_CST))
{
t1 = optimize_bit_field_compare (code, type, arg0, arg1);
return t1 ? t1 : t;
if (t1)
return t1;
}
/* If this is a comparison of complex values and either or both sides
......
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