aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-into-ssa.c
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2013-09-26 15:57:39 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2013-09-26 15:57:39 +0000
commit74fc8b8ab93cc6be30282b9c01010198a37510ee (patch)
tree5a050bcbe24cb4dedda87f619c5dc80225da29cb /gcc/tree-into-ssa.c
parentb4ada065443ec39feeca2fe034ea78401edd0a1f (diff)
downloadgcc-74fc8b8ab93cc6be30282b9c01010198a37510ee.zip
gcc-74fc8b8ab93cc6be30282b9c01010198a37510ee.tar.gz
gcc-74fc8b8ab93cc6be30282b9c01010198a37510ee.tar.bz2
tree-into-ssa.c (rewrite_into_ssa): Make more SSA names to anonymous.
2013-09-26 Richard Biener <rguenther@suse.de> * tree-into-ssa.c (rewrite_into_ssa): Make more SSA names to anonymous. From-SVN: r202949
Diffstat (limited to 'gcc/tree-into-ssa.c')
-rw-r--r--gcc/tree-into-ssa.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/tree-into-ssa.c b/gcc/tree-into-ssa.c
index 384d3b3..d67b94e 100644
--- a/gcc/tree-into-ssa.c
+++ b/gcc/tree-into-ssa.c
@@ -2366,10 +2366,8 @@ rewrite_into_ssa (void)
if (decl
&& TREE_CODE (decl) == VAR_DECL
&& !VAR_DECL_IS_VIRTUAL_OPERAND (decl)
- && DECL_ARTIFICIAL (decl)
- && DECL_IGNORED_P (decl)
- && !DECL_NAME (decl))
- SET_SSA_NAME_VAR_OR_IDENTIFIER (name, NULL_TREE);
+ && DECL_IGNORED_P (decl))
+ SET_SSA_NAME_VAR_OR_IDENTIFIER (name, DECL_NAME (decl));
}
return 0;