aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraphunit.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2003-10-12 11:06:26 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2003-10-12 09:06:26 +0000
commitde006bbd1813747bf3dca98a3629c12d8f4c00e7 (patch)
treed340ecf5d6bd03fc75dd4471f0602fbbb068c168 /gcc/cgraphunit.c
parent02e02343f447e536ab9aa8f5af0c9fad30bef537 (diff)
downloadgcc-de006bbd1813747bf3dca98a3629c12d8f4c00e7.zip
gcc-de006bbd1813747bf3dca98a3629c12d8f4c00e7.tar.gz
gcc-de006bbd1813747bf3dca98a3629c12d8f4c00e7.tar.bz2
cgraphunit.c (cgraph_decide_inlining): Fix uninitialized variable warning.
* cgraphunit.c (cgraph_decide_inlining): Fix uninitialized variable warning. From-SVN: r72391
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r--gcc/cgraphunit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c
index 5f89a58..7b85e77 100644
--- a/gcc/cgraphunit.c
+++ b/gcc/cgraphunit.c
@@ -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)