Commit c54b0a5e by Mark Mitchell

expr.c (expand_expr, [...]): Correct check for side-effects in the value of an array element.

	* expr.c (expand_expr, case ARRAY_REF): Correct check for
	side-effects in the value of an array element.

From-SVN: r43680
parent 074919fa
......@@ -6902,7 +6902,7 @@ expand_expr (exp, target, tmode, modifier)
elem = TREE_CHAIN (elem))
;
if (elem && !TREE_SIDE_EFFECTS (elem))
if (elem && !TREE_SIDE_EFFECTS (TREE_VALUE (elem)))
return expand_expr (fold (TREE_VALUE (elem)), target,
tmode, ro_modifier);
}
......
// Special g++ Options: -O1
int count = 0;
double foo () {
count++;
return 0;
};
double bar () {
const double x[1] = { foo() };
return x[0];
};
int main ()
{
bar();
if (count != 1)
return 1;
};
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