Commit 8b487c1f by Richard Stallman

(calls_alloca): Don't look within DECL_INITIAL if it's 0.

From-SVN: r2402
parent 9e06e321
......@@ -146,7 +146,7 @@ calls_alloca (exp)
register tree local;
for (local = BLOCK_VARS (exp); local; local = TREE_CHAIN (local))
if (calls_alloca (DECL_INITIAL (local)))
if (DECL_INITIAL (local) != 0 && calls_alloca (DECL_INITIAL (local)))
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