Initialize ruid in new_var_info

PR bootstrap/64754
	* tree-ssa-structalias.c (new_var_info): Initialize ruid.

From-SVN: r220108
This commit is contained in:
H.J. Lu 2015-01-26 12:47:20 +00:00 committed by H.J. Lu
parent c7ac7ddaa9
commit b1512ea053
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2015-01-26 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/64754
* tree-ssa-structalias.c (new_var_info): Initialize ruid.
---
2015-01-26 Terry Guo <terry.guo@arm.com>
* config/arm/arm.c (arm_file_start): Update the assignment of

View File

@ -409,6 +409,7 @@ new_var_info (tree t, const char *name)
ret->may_have_pointers = true;
ret->only_restrict_pointers = false;
ret->is_restrict_var = false;
ret->ruid = 0;
ret->is_global_var = (t == NULL_TREE);
ret->is_fn_info = false;
if (t && DECL_P (t))