diff options
author | DJ Delorie <dj@redhat.com> | 2008-01-19 01:18:42 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2008-01-19 01:18:42 +0000 |
commit | 145f4ab500b18cd0d31e7bff54983ded2e45b0cf (patch) | |
tree | 5285641ac32c19226d873f88d8c4981de804df83 /libiberty/splay-tree.c | |
parent | a97690cd3aeb766c0062d6c6b4b0a46951a30e4b (diff) | |
download | gdb-145f4ab500b18cd0d31e7bff54983ded2e45b0cf.zip gdb-145f4ab500b18cd0d31e7bff54983ded2e45b0cf.tar.gz gdb-145f4ab500b18cd0d31e7bff54983ded2e45b0cf.tar.bz2 |
merge from gcc
Diffstat (limited to 'libiberty/splay-tree.c')
-rw-r--r-- | libiberty/splay-tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/splay-tree.c b/libiberty/splay-tree.c index 060f900..d7ed868 100644 --- a/libiberty/splay-tree.c +++ b/libiberty/splay-tree.c @@ -107,7 +107,7 @@ splay_tree_delete_helper (splay_tree sp, splay_tree_node node) } /* Rotate the edge joining the left child N with its parent P. PP is the - grandparents pointer to P. */ + grandparents' pointer to P. */ static inline void rotate_left (splay_tree_node *pp, splay_tree_node p, splay_tree_node n) @@ -120,7 +120,7 @@ rotate_left (splay_tree_node *pp, splay_tree_node p, splay_tree_node n) } /* Rotate the edge joining the right child N with its parent P. PP is the - grandparents pointer to P. */ + grandparents' pointer to P. */ static inline void rotate_right (splay_tree_node *pp, splay_tree_node p, splay_tree_node n) |