OSDN Git Service

* gimplify.c (create_tmp_var_raw): Don't call build_type_variant.
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 5 May 2011 12:04:29 +0000 (12:04 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 5 May 2011 12:04:29 +0000 (12:04 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@173426 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/gimplify.c

index 88b6008..f4b1874 100644 (file)
@@ -1,3 +1,7 @@
+2011-05-05  Jakub Jelinek  <jakub@redhat.com>
+
+       * gimplify.c (create_tmp_var_raw): Don't call build_type_variant.
+
 2011-05-05  Eric Botcazou  <ebotcazou@adacore.com>
 
        * tree.h (get_pending_sizes): Remove prototype.
index a554c20..c4b84c1 100644 (file)
@@ -427,11 +427,6 @@ tree
 create_tmp_var_raw (tree type, const char *prefix)
 {
   tree tmp_var;
-  tree new_type;
-
-  /* Make the type of the variable writable.  */
-  new_type = build_type_variant (type, 0, 0);
-  TYPE_ATTRIBUTES (new_type) = TYPE_ATTRIBUTES (type);
 
   tmp_var = build_decl (input_location,
                        VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,