Commit d0228c2e by Jakub Jelinek Committed by Jakub Jelinek

* gimplify.c (create_tmp_var_raw): Don't call build_type_variant.

From-SVN: r173426
parent 62ffa8af
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> 2011-05-05 Eric Botcazou <ebotcazou@adacore.com>
* tree.h (get_pending_sizes): Remove prototype. * tree.h (get_pending_sizes): Remove prototype.
......
...@@ -427,11 +427,6 @@ tree ...@@ -427,11 +427,6 @@ tree
create_tmp_var_raw (tree type, const char *prefix) create_tmp_var_raw (tree type, const char *prefix)
{ {
tree tmp_var; 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, tmp_var = build_decl (input_location,
VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL, VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment