aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-structalias.c
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2015-01-26 12:47:20 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2015-01-26 04:47:20 -0800
commitb1512ea05331e1b5e59edcb58adbd929527931a7 (patch)
treee0584b3111ae112040367a3e53100e5d122f8e32 /gcc/tree-ssa-structalias.c
parentc7ac7ddaa97d6e0a00a9ce554cd64ce9f167519a (diff)
downloadgcc-b1512ea05331e1b5e59edcb58adbd929527931a7.zip
gcc-b1512ea05331e1b5e59edcb58adbd929527931a7.tar.gz
gcc-b1512ea05331e1b5e59edcb58adbd929527931a7.tar.bz2
Initialize ruid in new_var_info
PR bootstrap/64754 * tree-ssa-structalias.c (new_var_info): Initialize ruid. From-SVN: r220108
Diffstat (limited to 'gcc/tree-ssa-structalias.c')
-rw-r--r--gcc/tree-ssa-structalias.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c
index 96d1ce3..4c43b75 100644
--- a/gcc/tree-ssa-structalias.c
+++ b/gcc/tree-ssa-structalias.c
@@ -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))