OSDN Git Service

2011-11-21 David Edelsohn <dje.gcc@gmail.com>
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 29 Nov 2011 16:32:28 +0000 (16:32 +0000)
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 29 Nov 2011 16:32:28 +0000 (16:32 +0000)
            Aldy Hernandez  <aldyh@redhat.com>

        * trans-mem.c (ipa_tm_create_version_alias): Mangle new_decl
        if DECL_ONE_ONLY.
        (ipa_tm_create_version): Same.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@181807 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/trans-mem.c

index 9a6765d..bfefccb 100644 (file)
@@ -1,3 +1,10 @@
+2011-11-21  David Edelsohn  <dje.gcc@gmail.com>
+           Aldy Hernandez  <aldyh@redhat.com>
+
+       * trans-mem.c (ipa_tm_create_version_alias): Mangle new_decl
+       if DECL_ONE_ONLY.
+       (ipa_tm_create_version): Same.
+
 2011-11-29  Bernd Schmidt  <bernds@codesourcery.com>
 
        * haifa-sched.c (recompute_todo_spec): Simplify and correct the
index 751572c..9751a15 100644 (file)
@@ -4213,7 +4213,7 @@ ipa_tm_create_version_alias (struct cgraph_node *node, void *data)
   TREE_SYMBOL_REFERENCED (tm_name) = 1;
 
   /* Perform the same remapping to the comdat group.  */
-  if (DECL_COMDAT (new_decl))
+  if (DECL_ONE_ONLY (new_decl))
     DECL_COMDAT_GROUP (new_decl) = tm_mangle (DECL_COMDAT_GROUP (old_decl));
 
   new_node = cgraph_same_body_alias (NULL, new_decl, info->new_decl);
@@ -4248,7 +4248,7 @@ ipa_tm_create_version (struct cgraph_node *old_node)
   TREE_SYMBOL_REFERENCED (tm_name) = 1;
 
   /* Perform the same remapping to the comdat group.  */
-  if (DECL_COMDAT (new_decl))
+  if (DECL_ONE_ONLY (new_decl))
     DECL_COMDAT_GROUP (new_decl) = tm_mangle (DECL_COMDAT_GROUP (old_decl));
 
   new_node = cgraph_copy_node_for_versioning (old_node, new_decl, NULL, NULL);