From: Richard Biener Date: Thu, 26 Sep 2013 15:57:39 +0000 (+0000) Subject: tree-into-ssa.c (rewrite_into_ssa): Make more SSA names to anonymous. X-Git-Tag: releases/gcc-4.9.0~3857 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74fc8b8ab93cc6be30282b9c01010198a37510ee;p=thirdparty%2Fgcc.git tree-into-ssa.c (rewrite_into_ssa): Make more SSA names to anonymous. 2013-09-26 Richard Biener * tree-into-ssa.c (rewrite_into_ssa): Make more SSA names to anonymous. From-SVN: r202949 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d16da9371787..c9fd9fd6e46f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-09-26 Richard Biener + + * tree-into-ssa.c (rewrite_into_ssa): Make more SSA names + to anonymous. + 2013-09-26 Richard Biener * alias.h (component_uses_parent_alias_set): Rename to ... diff --git a/gcc/tree-into-ssa.c b/gcc/tree-into-ssa.c index 384d3b33cff6..d67b94e11bbb 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;