Add missing is_full_var setting in create_variable_info_for_1

2015-10-23  Tom de Vries  <tom@codesourcery.com>

	* tree-ssa-structalias.c (create_variable_info_for_1): Add missing
	setting of is_full_var in case of a single field.

From-SVN: r229218
This commit is contained in:
Tom de Vries 2015-10-23 09:38:36 +00:00 committed by Tom de Vries
parent 74093af2ca
commit 498dbe0a13
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2015-10-23 Tom de Vries <tom@codesourcery.com>
* tree-ssa-structalias.c (create_variable_info_for_1): Add missing
setting of is_full_var in case of a single field.
2015-10-22 Martin Sebor <msebor@redhat.com>
PR driver/68043

View File

@ -5693,6 +5693,8 @@ create_variable_info_for_1 (tree decl, const char *name)
vi = new_var_info (decl, name);
vi->fullsize = tree_to_uhwi (declsize);
if (fieldstack.length () == 1)
vi->is_full_var = true;
for (i = 0, newvi = vi;
fieldstack.iterate (i, &fo);
++i, newvi = vi_next (newvi))