aboutsummaryrefslogtreecommitdiff
path: root/gcc/genrecog.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2001-08-12 23:40:53 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2001-08-12 23:40:53 +0000
commitdc297297ea56b13efad4bcddab5359fae7d819c1 (patch)
treef8425171fd5a2b92510be46813648f3e6a1d9f61 /gcc/genrecog.c
parentf0d1c3bd39e6379bf2c1b53071c62baeabeb2174 (diff)
downloadgcc-dc297297ea56b13efad4bcddab5359fae7d819c1.zip
gcc-dc297297ea56b13efad4bcddab5359fae7d819c1.tar.gz
gcc-dc297297ea56b13efad4bcddab5359fae7d819c1.tar.bz2
gcc.c: Fix comment formatting.
* gcc.c: Fix comment formatting. * gccspec.c: Likewise. * gcov.c: Likewise. * gcse.c: Likewise. * genemit.c: Likewise. * gengenrtl.c: Likewise. * genrecog.c: Likewise. * gensupport.c: Likewise. * ggc-page.c: Likewise. * global.c: Likewise. * graph.c: Likewise. * ifcvt.c: Likewise. * integrate.c: Likewise. * lcm.c: Likewise. * libgcc2.c: Likewise. * loop.c: Likewise. * mbchar.c: Likewise. * optabs.c: Likewise. * predict.c: Likewise. * prefix.c: Likewise. * profile.c: Likewise. * protoize.c: Likewise. * real.c: Likewise. * recog.c: Likewise. * regclass.c: Likewise. * regmove.c: Likewise. * reg-stack.c: Likewise. * reload1.c: Likewise. * resource.c: Likewise. * rtlanal.c: Likewise. * rtl.c: Likewise. From-SVN: r44837
Diffstat (limited to 'gcc/genrecog.c')
-rw-r--r--gcc/genrecog.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/genrecog.c b/gcc/genrecog.c
index c3a7fea..0a02977 100644
--- a/gcc/genrecog.c
+++ b/gcc/genrecog.c
@@ -800,7 +800,7 @@ add_to_sequence (pattern, last, position, insn_type, top)
switch (code)
{
case PARALLEL:
- /* Toplevel peephole pattern. */
+ /* Toplevel peephole pattern. */
if (insn_type == PEEPHOLE2 && top)
{
/* We don't need the node we just created -- unlink it. */
@@ -809,7 +809,7 @@ add_to_sequence (pattern, last, position, insn_type, top)
for (i = 0; i < (size_t) XVECLEN (pattern, 0); i++)
{
/* Which insn we're looking at is represented by A-Z. We don't
- ever use 'A', however; it is always implied. */
+ ever use 'A', however; it is always implied. */
subpos[depth] = (i > 0 ? 'A' + i : 0);
sub = add_to_sequence (XVECEXP (pattern, 0, i),
@@ -1705,7 +1705,7 @@ find_afterward (head, real_afterward)
new state, branch to node AFTERWARD if non-zero, otherwise return.
Failure to move to the new state can only occur if we are trying to
- match multiple insns and we try to step past the end of the stream. */
+ match multiple insns and we try to step past the end of the stream. */
static void
change_state (oldpos, newpos, afterward, indent)
@@ -1734,7 +1734,7 @@ change_state (oldpos, newpos, afterward, indent)
/* Go down to desired level. */
while (depth < ndepth)
{
- /* It's a different insn from the first one. */
+ /* It's a different insn from the first one. */
if (newpos[depth] >= 'A' && newpos[depth] <= 'Z')
{
/* We can only fail if we're moving down the tree. */