aboutsummaryrefslogtreecommitdiff
path: root/libiberty/splay-tree.c
diff options
context:
space:
mode:
authorJosef Zlomek <zlomekj@suse.cz>2003-05-07 18:19:36 +0000
committerJosef Zlomek <zlomekj@suse.cz>2003-05-07 18:19:36 +0000
commite6cb3eaa5b39b9e9e13f34287d93d7f9869e4a8c (patch)
treeec9eb463afe70f4141126c2ab559c6c118e54433 /libiberty/splay-tree.c
parentd9c34328d86ff1f3ebb3f8d1a7c1173dbf42a358 (diff)
* splay-tree.c (splay_tree_predecessor): Fix comment.
(splay_tree_successor): Fix comment. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@66569 138bc75d-0d04-0410-961f-82ee72b054a4
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 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)