diff options
author | Richard Guenther <rguenther@suse.de> | 2012-05-24 09:57:38 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-05-24 09:57:38 +0000 |
commit | b44be1e6cfcd00aa166e84d006232d9ddeda7b6f (patch) | |
tree | ebbc9c6b85ca9dc4e544489e3b66018190b65b53 /gcc/varpool.c | |
parent | 1431ce016118027c4d36207852ce9281547db66a (diff) | |
download | gcc-b44be1e6cfcd00aa166e84d006232d9ddeda7b6f.zip gcc-b44be1e6cfcd00aa166e84d006232d9ddeda7b6f.tar.gz gcc-b44be1e6cfcd00aa166e84d006232d9ddeda7b6f.tar.bz2 |
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
Diffstat (limited to 'gcc/varpool.c')
-rw-r--r-- | gcc/varpool.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/varpool.c b/gcc/varpool.c index a1a2690..45cc4cc 100644 --- a/gcc/varpool.c +++ b/gcc/varpool.c @@ -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); |