(calls_alloca): Don't look within DECL_INITIAL if it's 0.
From-SVN: r2402
This commit is contained in:
parent
9e06e32130
commit
8b487c1f9e
@ -146,7 +146,7 @@ calls_alloca (exp)
|
|||||||
register tree local;
|
register tree local;
|
||||||
|
|
||||||
for (local = BLOCK_VARS (exp); local; local = TREE_CHAIN (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;
|
return 1;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user