Commit de006bbd by Jan Hubicka Committed by Jan Hubicka

cgraphunit.c (cgraph_decide_inlining): Fix uninitialized variable warning.


	* cgraphunit.c (cgraph_decide_inlining): Fix uninitialized variable
	warning.

From-SVN: r72391
parent 02e02343
2003-10-12 Jan Hubicka <jh@suse.cz>
* cgraphunit.c (cgraph_decide_inlining): Fix uninitialized variable
warning.
2003-10-12 Danny Smith <dannysmith@users.sourceforge.net>
* config/i386/i386.c (x86_this_parameter): Fix typo.
......
......@@ -1080,7 +1080,7 @@ cgraph_decide_inlining (void)
xcalloc (cgraph_n_nodes, sizeof (struct cgraph_node *));
int ninlined;
int ninlined_callees;
int old_insns;
int old_insns = 0;
int i, y;
for (node = cgraph_nodes; node; node = node->next)
......
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