diff options
| author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-04-15 14:28:43 +0000 |
|---|---|---|
| committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-04-15 14:28:43 +0000 |
| commit | 22a3a20934b3a0bc50bd52999dbdd1f93aa10c2f (patch) | |
| tree | ba9bea11a9387f4a4e107e361cfe0c5200a18b52 | |
| parent | 9dacc15ce08eff07dc745255c0cfa122a083871c (diff) | |
| download | ppe42-gcc-22a3a20934b3a0bc50bd52999dbdd1f93aa10c2f.tar.gz ppe42-gcc-22a3a20934b3a0bc50bd52999dbdd1f93aa10c2f.zip | |
* gfc-internals.texi: Fix typos.
* simplify.c: Fix a comment typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123845 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/fortran/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/fortran/gfc-internals.texi | 4 | ||||
| -rw-r--r-- | gcc/fortran/simplify.c | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 3ec7430d6ac..3d8b03c36d6 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,8 @@ +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> * primary.c: Commentary typo fix; Add question about redundant (?) diff --git a/gcc/fortran/gfc-internals.texi b/gcc/fortran/gfc-internals.texi index f593d727757..d61b87e3b38 100644 --- a/gcc/fortran/gfc-internals.texi +++ b/gcc/fortran/gfc-internals.texi @@ -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 possible values are enumerated in @code{gfc_exec_op}. A special 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 filled in. Fields that are generally applicable are the @code{next} 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 contain various blocks (the chain of @code{ELSE IF} and @code{ELSE} 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. diff --git a/gcc/fortran/simplify.c b/gcc/fortran/simplify.c index 27f30ae2c14..ab3d3d2fe75 100644 --- a/gcc/fortran/simplify.c +++ b/gcc/fortran/simplify.c @@ -2842,7 +2842,7 @@ gfc_simplify_repeat (gfc_expr *e, gfc_expr *n) } mpz_clear (ncopies); - /* For further simplication, we need the character string to be + /* For further simplification, we need the character string to be constant. */ if (e->expr_type != EXPR_CONSTANT) return NULL; |

