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

From-SVN: r2402
This commit is contained in:
Richard Stallman 1992-10-12 04:35:54 +00:00
parent 9e06e32130
commit 8b487c1f9e
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
{