diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1996-07-03 22:07:53 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1996-07-03 22:07:53 +0000 |
commit | 0f41302f4736dbb0fbf4690d6430ce581c5a9d80 (patch) | |
tree | e82dd48a4282d7b9e8b1c71b065b52af17254c52 /gcc/genrecog.c | |
parent | 9753f1136864a98cca12ab71f0ffe1af4dd84486 (diff) | |
download | gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.zip gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.tar.gz gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.tar.bz2 |
formatting tweaks
From-SVN: r12390
Diffstat (limited to 'gcc/genrecog.c')
-rw-r--r-- | gcc/genrecog.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/genrecog.c b/gcc/genrecog.c index 21f1c06..b07c70f 100644 --- a/gcc/genrecog.c +++ b/gcc/genrecog.c @@ -120,7 +120,7 @@ static int next_number; static int next_insn_code; /* Similar, but counts all expressions in the MD file; used for - error messages. */ + error messages. */ static int next_index; @@ -498,7 +498,7 @@ add_to_sequence (pattern, last, position) if (GET_CODE (XEXP (pattern, 0)) == CC0) break; - /* ... fall through ... */ + /* ... fall through ... */ case COMPARE: /* Enforce the mode on the first operand to avoid ambiguous insns. */ @@ -572,7 +572,7 @@ not_both_true (d1, d2, toplevel) struct decision *p1, *p2; /* If they are both to test modes and the modes are different, they aren't - both true. Similarly for codes, integer elements, and vector lengths. */ + both true. Similarly for codes, integer elements, and vector lengths. */ if ((d1->enforce_mode && d2->enforce_mode && d1->mode != VOIDmode && d2->mode != VOIDmode && d1->mode != d2->mode) @@ -1139,7 +1139,7 @@ write_tree_1 (tree, prevpos, afterward, type) seen any of the codes that are valid for the predicate, we can write a series of "case" statement, one for each possible code. Since we are already in a switch, these redundant tests - are very cheap and will reduce the number of predicate called. */ + are very cheap and will reduce the number of predicate called. */ if (p->pred >= 0) { @@ -1309,7 +1309,7 @@ write_tree_1 (tree, prevpos, afterward, type) } /* Now that most mode and code tests have been done, we can write out - a label for an inner node, if we haven't already. */ + a label for an inner node, if we haven't already. */ if (p->label_needed) printf ("%sL%d:\n", indents[indent - 2], p->number); |