Commit 71172460 by Kazu Hirata Committed by Kazu Hirata

gfc-internals.texi: Fix typos.

	* gfc-internals.texi: Fix typos.
	* simplify.c: Fix a comment typo.

From-SVN: r123845
parent 14463ee9
2007-04-15 Kazu Hirata <kazu@codesourcery.com>
* gfc-internals.texi: Fix typos.
* simplify.c: Fix a comment typo.
2007-04-14 Bernhard Fischer <aldot@gcc.gnu.org> 2007-04-14 Bernhard Fischer <aldot@gcc.gnu.org>
* primary.c: Commentary typo fix; Add question about redundant (?) * primary.c: Commentary typo fix; Add question about redundant (?)
......
...@@ -298,7 +298,7 @@ nested chain of @code{gfc_code} structures. The type of statement is ...@@ -298,7 +298,7 @@ nested chain of @code{gfc_code} structures. The type of statement is
identified by the @code{op} member of the structure, the different identified by the @code{op} member of the structure, the different
possible values are enumerated in @code{gfc_exec_op}. A special possible values are enumerated in @code{gfc_exec_op}. A special
member of this @code{enum} is @code{EXEC_NOP} which is used to member of this @code{enum} is @code{EXEC_NOP} which is used to
reperesent the various @code{END} statements if they carry a label. represent the various @code{END} statements if they carry a label.
Depending on the type of statement some of the other fields will be Depending on the type of statement some of the other fields will be
filled in. Fields that are generally applicable are the @code{next} filled in. Fields that are generally applicable are the @code{next}
and @code{here} fields. The former points to the next statement in and @code{here} fields. The former points to the next statement in
...@@ -314,7 +314,7 @@ block in question. The @code{SELECT} and @code{IF} statements may ...@@ -314,7 +314,7 @@ block in question. The @code{SELECT} and @code{IF} statements may
contain various blocks (the chain of @code{ELSE IF} and @code{ELSE} contain various blocks (the chain of @code{ELSE IF} and @code{ELSE}
blocks or the various @code{CASE}s, respectively). blocks or the various @code{CASE}s, respectively).
@c What would be nice here would be an example program togehter with @c What would be nice here would be an example program together with
@c an image that says more than the mythical thousand words. @c an image that says more than the mythical thousand words.
......
...@@ -2842,7 +2842,7 @@ gfc_simplify_repeat (gfc_expr *e, gfc_expr *n) ...@@ -2842,7 +2842,7 @@ gfc_simplify_repeat (gfc_expr *e, gfc_expr *n)
} }
mpz_clear (ncopies); mpz_clear (ncopies);
/* For further simplication, we need the character string to be /* For further simplification, we need the character string to be
constant. */ constant. */
if (e->expr_type != EXPR_CONSTANT) if (e->expr_type != EXPR_CONSTANT)
return NULL; return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment