summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2003-05-07 19:15:59 +0000
committerDJ Delorie <dj@delorie.com>2003-05-07 19:15:59 +0000
commit63442928a09b4ba99987c56d1215f53c67f5fc72 (patch)
tree4882f240f40b787d2e3d5cb50261dd377af9165b
parent58864fbf7bb5df9e54d69894dca932dda24ce17f (diff)
downloadgdb-63442928a09b4ba99987c56d1215f53c67f5fc72.tar.gz
merge from gcc
-rw-r--r--libiberty/ChangeLog5
-rw-r--r--libiberty/splay-tree.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index 90f51febccf..5498f112156 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,8 @@
+2003-05-07 Josef Zlomek <zlomekj@suse.cz>
+
+ * splay-tree.c (splay_tree_predecessor): Fix comment.
+ (splay_tree_successor): Fix comment.
+
2003-05-07 Jason Merrill <jason@redhat.com>
* hashtab.c (burtle_hash): New fn.
diff --git a/libiberty/splay-tree.c b/libiberty/splay-tree.c
index 6f90fde05fb..fc98db167f3 100644
--- a/libiberty/splay-tree.c
+++ b/libiberty/splay-tree.c
@@ -472,7 +472,7 @@ splay_tree_predecessor (sp, key)
if (comparison < 0)
return sp->root;
- /* Otherwise, find the leftmost element of the right subtree. */
+ /* Otherwise, find the rightmost element of the left subtree. */
node = sp->root->left;
if (node)
while (node->right)
@@ -505,7 +505,7 @@ splay_tree_successor (sp, key)
if (comparison > 0)
return sp->root;
- /* Otherwise, find the rightmost element of the left subtree. */
+ /* Otherwise, find the leftmost element of the right subtree. */
node = sp->root->right;
if (node)
while (node->left)