diff options
author | Richard Biener <rguenther@suse.de> | 2013-09-26 15:57:39 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2013-09-26 15:57:39 +0000 |
commit | 74fc8b8ab93cc6be30282b9c01010198a37510ee (patch) | |
tree | 5a050bcbe24cb4dedda87f619c5dc80225da29cb /gcc/tree-into-ssa.c | |
parent | b4ada065443ec39feeca2fe034ea78401edd0a1f (diff) | |
download | gcc-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.c | 6 |
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; |