aboutsummaryrefslogtreecommitdiff
path: root/libiberty/splay-tree.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@zembu.com>1999-07-26 17:57:25 +0000
committerJeff Law <law@gcc.gnu.org>1999-07-26 11:57:25 -0600
commit652374d3387f07d154342f4c3f49265b48df5520 (patch)
treef0b659fa6e6c7675aa8bb9ba17ac5dee8c377b96 /libiberty/splay-tree.c
parent4bdc1ac79d1d92bfbf117c02fa14afaf74c1f79e (diff)
downloadgcc-652374d3387f07d154342f4c3f49265b48df5520.zip
gcc-652374d3387f07d154342f4c3f49265b48df5520.tar.gz
gcc-652374d3387f07d154342f4c3f49265b48df5520.tar.bz2
splay-tree.c (splay_tree_insert): Add initialization to avoid warning.
* splay-tree.c (splay_tree_insert): Add initialization to avoid warning. From-SVN: r28269
Diffstat (limited to 'libiberty/splay-tree.c')
-rw-r--r--libiberty/splay-tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/splay-tree.c b/libiberty/splay-tree.c
index b6bb5a6..1cb6bd9 100644
--- a/libiberty/splay-tree.c
+++ b/libiberty/splay-tree.c
@@ -1,5 +1,5 @@
/* A splay-tree datatype.
- Copyright (C) 1998 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999 Free Software Foundation, Inc.
Contributed by Mark Mitchell (mark@markmitchell.com).
This file is part of GNU CC.
@@ -264,7 +264,7 @@ splay_tree_insert (sp, key, value)
splay_tree_key key;
splay_tree_value value;
{
- int comparison;
+ int comparison = 0;
splay_tree_splay (sp, key);