aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraphunit.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2006-01-29 04:38:56 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2006-01-29 04:38:56 +0000
commit21c4a6a73277ef6fec1ad1940109aaa1144a0fee (patch)
tree0e1ae74694913a782b1193eb184f4a8acf4f252b /gcc/cgraphunit.c
parent89a42ac8a1c85ee240df92c7ccd0c973bc95a24c (diff)
downloadgcc-21c4a6a73277ef6fec1ad1940109aaa1144a0fee.zip
gcc-21c4a6a73277ef6fec1ad1940109aaa1144a0fee.tar.gz
gcc-21c4a6a73277ef6fec1ad1940109aaa1144a0fee.tar.bz2
cgraphunit.c (cgraph_assemble_pending_functions): Call cgraph_output_pending_asms.
* cgraphunit.c (cgraph_assemble_pending_functions): Call cgraph_output_pending_asms. From-SVN: r110364
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r--gcc/cgraphunit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c
index 57fc2ea..597191a 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;