Commit 21c4a6a7 by Ian Lance Taylor Committed by Ian Lance Taylor

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
parent 89a42ac8
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.
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment