cgraphunit.c (cgraph_expand_all_functions): Renamed from cgraph_expand_functions.
authorKelley Cook <kelleycook@wideopenwest.com>
Wed, 24 Sep 2003 00:05:42 +0000 (00:05 +0000)
committerR. Kelley Cook <kcook@gcc.gnu.org>
Wed, 24 Sep 2003 00:05:42 +0000 (00:05 +0000)
2003-09-23  Kelley Cook  <kelleycook@wideopenwest.com>

* cgraphunit.c (cgraph_expand_all_functions): Renamed from
cgraph_expand_functions.

From-SVN: r71704

gcc/ChangeLog
gcc/cgraphunit.c

index 04daabd1952891afe36bbeb60bcadace7aebeda9..e0890b3c41773f930baebe3dcb4c8ad999845f24 100644 (file)
@@ -1,3 +1,8 @@
+2003-09-23  Kelley Cook  <kelleycook@wideopenwest.com>
+
+       * cgraphunit.c (cgraph_expand_all_functions): Renamed from 
+       cgraph_expand_functions.
+
 2003-09-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * Makefile.in (gnucompare*): Merge into ...
index f615d1bafa4312622463d3c901b88bc4f4c320c8..4ed3f7013c9005add3202dd00eb8566c6cc1322c 100644 (file)
@@ -41,7 +41,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 #define INSNS_PER_CALL 10
 
-static void cgraph_expand_functions (void);
+static void cgraph_expand_all_functions (void);
 static void cgraph_mark_functions_to_output (void);
 static void cgraph_expand_function (struct cgraph_node *);
 static tree record_call_1 (tree *, int *, void *);
@@ -1211,7 +1211,7 @@ cgraph_inline_p (tree caller_decl, tree callee_decl)
    order).  */
 
 static void
-cgraph_expand_functions (void)
+cgraph_expand_all_functions (void)
 {
   struct cgraph_node *node;
   struct cgraph_node **order =
@@ -1295,7 +1295,7 @@ cgraph_optimize (void)
     fprintf (stderr, "Assembling functions:");
 
   /* Output everything.  */
-  cgraph_expand_functions ();
+  cgraph_expand_all_functions ();
   if (cgraph_dump_file)
     {
       fprintf (cgraph_dump_file, "Final callgraph:");