Use decl_type in create_variable_info_for_1
authorvries <vries@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 4 Nov 2015 14:18:34 +0000 (14:18 +0000)
committervries <vries@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 4 Nov 2015 14:18:34 +0000 (14:18 +0000)
2015-11-04  Tom de Vries  <tom@codesourcery.com>

* tree-ssa-structalias.c (create_variable_info_for_1): Use decl_type
variable.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229754 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree-ssa-structalias.c

index 0375249..9b82fc2 100644 (file)
@@ -1,3 +1,8 @@
+2015-11-04  Tom de Vries  <tom@codesourcery.com>
+
+       * tree-ssa-structalias.c (create_variable_info_for_1): Use decl_type
+       variable.
+
 2015-11-03  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
 
        * config/arm/coff.h: Remove.
index ded5a1e..98b5f16 100644 (file)
@@ -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;