varpool.c (add_new_static_var): Remove call to create_var_ann.

2012-05-24  Richard Guenther  <rguenther@suse.de>

	* varpool.c (add_new_static_var): Remove call to create_var_ann.
	* tree-ssa-operands.c (create_vop_var): Likewise.

From-SVN: r187825
This commit is contained in:
Richard Guenther 2012-05-24 09:57:38 +00:00 committed by Richard Biener
parent 1431ce0161
commit b44be1e6cf
3 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2012-05-24 Richard Guenther <rguenther@suse.de>
* varpool.c (add_new_static_var): Remove call to create_var_ann.
* tree-ssa-operands.c (create_vop_var): Likewise.
2012-05-24 Richard Guenther <rguenther@suse.de>
PR bootstrap/53466

View File

@ -177,7 +177,6 @@ create_vop_var (struct function *fn)
TREE_ADDRESSABLE (global_var) = 0;
VAR_DECL_IS_VIRTUAL_OPERAND (global_var) = 1;
create_var_ann (global_var);
add_referenced_var_1 (global_var, fn);
fn->gimple_df->vop = global_var;
}

View File

@ -457,7 +457,6 @@ add_new_static_var (tree type)
DECL_CONTEXT (new_decl) = NULL_TREE;
DECL_ABSTRACT (new_decl) = 0;
lang_hooks.dup_lang_specific_decl (new_decl);
create_var_ann (new_decl);
new_node = varpool_node (new_decl);
add_referenced_var (new_decl);
varpool_finalize_decl (new_decl);