diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-29 04:38:56 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-29 04:38:56 +0000 |
commit | f788fff2bf44397e09bbf0459c06550f00ab45d5 (patch) | |
tree | 0e1ae74694913a782b1193eb184f4a8acf4f252b /gcc | |
parent | 1d7525088416d1e29abc78ed78cf09ed2cb13782 (diff) | |
download | ppe42-gcc-f788fff2bf44397e09bbf0459c06550f00ab45d5.tar.gz ppe42-gcc-f788fff2bf44397e09bbf0459c06550f00ab45d5.zip |
* cgraphunit.c (cgraph_assemble_pending_functions): Call
cgraph_output_pending_asms.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@110364 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cgraphunit.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f40c0311496..5ef6ae41c23 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-01-28 Ian Lance Taylor <ian@airs.com> + + * cgraphunit.c (cgraph_assemble_pending_functions): Call + cgraph_output_pending_asms. + 2006-01-28 Zack Weinberg <zackw@panix.com> * c.opt: Add -W(no-)overlength-strings. diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 57fc2eaa405..597191ac4d8 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -171,6 +171,7 @@ 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_reference (tree *, int *, void *); +static void cgraph_output_pending_asms (void); /* Records tree nodes seen in record_reference. Simply using walk_tree_without_duplicates doesn't guarantee each node is visited @@ -338,6 +339,8 @@ cgraph_assemble_pending_functions (void) if (flag_unit_at_a_time) return false; + cgraph_output_pending_asms (); + while (cgraph_nodes_queue) { struct cgraph_node *n = cgraph_nodes_queue; |