From: Tom de Vries Date: Wed, 4 Nov 2015 14:18:34 +0000 (+0000) Subject: Use decl_type in create_variable_info_for_1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7b0a0ee25fb5b2007aa4d93d0f9557de2f512bd8;p=gcc.git Use decl_type in create_variable_info_for_1 2015-11-04 Tom de Vries * tree-ssa-structalias.c (create_variable_info_for_1): Use decl_type variable. From-SVN: r229754 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0375249ee99..9b82fc2ac96 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-11-04 Tom de Vries + + * tree-ssa-structalias.c (create_variable_info_for_1): Use decl_type + variable. + 2015-11-03 Trevor Saunders * config/arm/coff.h: Remove. diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index ded5a1e2ac7..98b5f168032 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -5718,8 +5718,8 @@ create_variable_info_for_1 (tree decl, const char *name, bool add_id) vi->fullsize = tree_to_uhwi (declsize); vi->size = vi->fullsize; vi->is_full_var = true; - if (POINTER_TYPE_P (TREE_TYPE (decl)) - && TYPE_RESTRICT (TREE_TYPE (decl))) + if (POINTER_TYPE_P (decl_type) + && TYPE_RESTRICT (decl_type)) vi->only_restrict_pointers = 1; fieldstack.release (); return vi;