diff options
author | Kelley Cook <kelleycook@wideopenwest.com> | 2003-09-24 00:05:42 +0000 |
---|---|---|
committer | R. Kelley Cook <kcook@gcc.gnu.org> | 2003-09-24 00:05:42 +0000 |
commit | a20af5b810529b6ac6d3550fb6b378d701ebbac3 (patch) | |
tree | ca65b705542641eb0b08c1925c399368d3cb1c5f | |
parent | 269a734355231cf7b16f94c93cd29dcabca37c16 (diff) | |
download | gcc-a20af5b810529b6ac6d3550fb6b378d701ebbac3.zip gcc-a20af5b810529b6ac6d3550fb6b378d701ebbac3.tar.gz gcc-a20af5b810529b6ac6d3550fb6b378d701ebbac3.tar.bz2 |
cgraphunit.c (cgraph_expand_all_functions): Renamed from cgraph_expand_functions.
2003-09-23 Kelley Cook <kelleycook@wideopenwest.com>
* cgraphunit.c (cgraph_expand_all_functions): Renamed from
cgraph_expand_functions.
From-SVN: r71704
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cgraphunit.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 04daabd..e0890b3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 ... diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index f615d1b..4ed3f70 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -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:"); |