OSDN Git Service

* cgraph.h (struct cgraph_node): Add alias.
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 30 Mar 2005 22:07:51 +0000 (22:07 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 30 Mar 2005 22:07:51 +0000 (22:07 +0000)
        * varasm.c (assemble_alias): Set it.
        * cgraphunit.c (cgraph_assemble_pending_functions): Check it and
        avoid calling cgraph_expand_function.

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

gcc/ChangeLog
gcc/cgraph.h
gcc/cgraphunit.c
gcc/varasm.c

index 2adae16..be4f8c2 100644 (file)
@@ -1,3 +1,10 @@
+2005-03-30  Richard Henderson  <rth@redhat.com>
+
+       * cgraph.h (struct cgraph_node): Add alias.
+       * varasm.c (assemble_alias): Set it.
+       * cgraphunit.c (cgraph_assemble_pending_functions): Check it and
+       avoid calling cgraph_expand_function.
+
 2005-03-30  Tom Tromey  <tromey@redhat.com>
 
        * tree.def (FILE_TYPE): Removed.
index 46f9f0a..b9a8d6e 100644 (file)
@@ -118,6 +118,8 @@ struct cgraph_node GTY((chain_next ("%h.next"), chain_prev ("%h.previous")))
   bool analyzed;
   /* Set when function is scheduled to be assembled.  */
   bool output;
+  /* Set for aliases once they got through assemble_alias.  */
+  bool alias;
 };
 
 struct cgraph_edge GTY((chain_next ("%h.next_caller"), chain_prev ("%h.prev_caller")))
index 6e864d5..9fef33e 100644 (file)
@@ -300,7 +300,9 @@ cgraph_assemble_pending_functions (void)
 
       cgraph_nodes_queue = cgraph_nodes_queue->next_needed;
       n->next_needed = NULL;
-      if (!n->global.inlined_to && !DECL_EXTERNAL (n->decl))
+      if (!n->global.inlined_to
+         && !n->alias
+         && !DECL_EXTERNAL (n->decl))
        {
          cgraph_expand_function (n);
          output = true;
index c51f6c0..cf323f4 100644 (file)
@@ -4516,7 +4516,7 @@ assemble_alias (tree decl, tree target)
 
   /* Allow aliases to aliases.  */
   if (TREE_CODE (decl) == FUNCTION_DECL)
-    cgraph_node (decl);
+    cgraph_node (decl)->alias = true;
   else
     cgraph_varpool_node (decl)->alias = true;