cfgexpand.c (expand_one_var): Guard expand_one_stack_var by really_expand.

* cfgexpand.c (expand_one_var): Guard expand_one_stack_var by
	really_expand.

From-SVN: r119535
This commit is contained in:
Jan Hubicka 2006-12-05 11:15:28 +01:00 committed by Jan Hubicka
parent bbbc206e9f
commit bd9f1b4b91
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-12-04 Jan Hubicka <jh@suse.cz>
* cfgexpand.c (expand_one_var): Guard expand_one_stack_var by
really_expand.
2006-12-04 Bernd Schmidt <bernd.schmidt@analog.com>
* rtlanal.c (note_uses): Deal with SEQUENCEs.

View file

@ -787,7 +787,8 @@ expand_one_var (tree var, bool toplevel, bool really_expand)
add_stack_var (var);
else
{
expand_one_stack_var (var);
if (really_expand)
expand_one_stack_var (var);
return tree_low_cst (DECL_SIZE_UNIT (var), 1);
}
return 0;