diff options
Diffstat (limited to 'gcc/c-typeck.c')
-rw-r--r-- | gcc/c-typeck.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 7bde430e8cb..ecd106081f2 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -5850,7 +5850,7 @@ add_pending_init (purpose, value) { if (r->balance < 0) { - /* L rotation. */ + /* L rotation. */ p->left = r->right; if (p->left) p->left->parent = p; @@ -5874,7 +5874,7 @@ add_pending_init (purpose, value) } else { - /* LR rotation. */ + /* LR rotation. */ struct init_node *t = r->right; r->right = t->left; @@ -5923,7 +5923,7 @@ add_pending_init (purpose, value) { if (r->balance > 0) { - /* R rotation. */ + /* R rotation. */ p->right = r->left; if (p->right) p->right->parent = p; @@ -5982,7 +5982,7 @@ add_pending_init (purpose, value) } else { - /* p->balance == -1; growth of right side balances the node. */ + /* p->balance == -1; growth of right side balances the node. */ p->balance = 0; break; } |