summaryrefslogtreecommitdiffstats
path: root/gcc/c-typeck.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-01 17:57:27 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-01 17:57:27 +0000
commit2c0e001bbb4f42e4d68a61140344a1e16fd3cdfe (patch)
tree86574f9925b42a9611cf138f95cf23040f8ab07f /gcc/c-typeck.c
parent2926d140e3eb8b89a785cf65ad9c62021c321f58 (diff)
downloadppe42-gcc-2c0e001bbb4f42e4d68a61140344a1e16fd3cdfe.tar.gz
ppe42-gcc-2c0e001bbb4f42e4d68a61140344a1e16fd3cdfe.zip
* alias.c: Fix comment formatting.
* bitmap.c: Likewise. * builtins.c: Likewise. * calls.c: Likewise. * c-common.c: Likewise. * c-decl.c: Likewise. * c-dump.c: Likewise. * c-lex.c: Likewise. * collect2.c: Likewise. * combine.c: Likewise. * conflict.c: Likewise. * cppfiles.c: Likewise. * cppinit.c: Likewise. * cpplex.c: Likewise. * cpplib.c: Likewise. * cppmacro.c: Likewise. * cppspec.c: Likewise. * c-pragma.c: Likewise. * crtstuff.c: Likewise. * cse.c: Likewise. * cselib.c: Likewise. * c-semantics.c: Likewise. * c-typeck.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44547 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-typeck.c')
-rw-r--r--gcc/c-typeck.c8
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;
}
OpenPOWER on IntegriCloud