Commit 7655071f by Graham Stott Committed by Jeff Law

reload.c (loc_mentioned_in_p): Add missing braces to bind else to correct if.

8
	* reload.c (loc_mentioned_in_p): Add missing braces to bind
	else to correct if.

From-SVN: r23205
parent b09df90b
......@@ -1586,8 +1586,10 @@ loc_mentioned_in_p (loc, in)
if (loc == &XEXP (in, i))
return 1;
if (fmt[i] == 'e')
{
if (loc_mentioned_in_p (loc, XEXP (in, i)))
return 1;
}
else if (fmt[i] == 'E')
for (j = XVECLEN (in, i) - 1; i >= 0; i--)
if (loc_mentioned_in_p (loc, XVECEXP (in, i, j)))
......
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