diff options
author | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-30 06:26:09 +0000 |
---|---|---|
committer | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-30 06:26:09 +0000 |
commit | df084314d8c12acbc59eaf20f35530300ceaa9fe (patch) | |
tree | 9bfa6519970c4abc5a0985c4591c2340cd3eb151 /gcc/fortran/frontend-passes.c | |
parent | e8f3287fe1d5b1126d1b53963c77554e46c1dd34 (diff) | |
download | gcc-df084314d8c12acbc59eaf20f35530300ceaa9fe.tar.gz |
2012-05-30 Tobias Burnus <burnus@net-b.de>
* decl.c: Fix comment typos.
* expr.c: Ditto.
* frontend-passes.c: Ditto.
* match.c: Ditto.
* resolve.c: Ditto.
* trans-array.c: Ditto.
* trans-common.c: Ditto.
* trans-intrinsic.c: Ditto.
* trans-types.c: Ditto.
2012-05-30 Tobias Burnus <burnus@net-b.de>
* io/io.h: Fix comment typos.
* io/list_read.c: Ditto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@188000 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fortran/frontend-passes.c')
-rw-r--r-- | gcc/fortran/frontend-passes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fortran/frontend-passes.c b/gcc/fortran/frontend-passes.c index 5361d86c543..40ca0745a1f 100644 --- a/gcc/fortran/frontend-passes.c +++ b/gcc/fortran/frontend-passes.c @@ -243,7 +243,7 @@ cfe_register_funcs (gfc_expr **e, int *walk_subtrees ATTRIBUTE_UNUSED, } /* Returns a new expression (a variable) to be used in place of the old one, - with an an assignment statement before the current statement to set + with an assignment statement before the current statement to set the value of the variable. Creates a new BLOCK for the statement if that hasn't already been done and puts the statement, plus the newly created variables, in that block. */ @@ -806,7 +806,7 @@ optimize_op (gfc_expr *e) { gfc_intrinsic_op op = e->value.op.op; - /* Only use new-style comparisions. */ + /* Only use new-style comparisons. */ switch(op) { case INTRINSIC_EQ_OS: @@ -931,7 +931,7 @@ optimize_comparison (gfc_expr *e, gfc_intrinsic_op op) } else if (e->expr_type == EXPR_FUNCTION) { - /* One of the lexical comparision functions. */ + /* One of the lexical comparison functions. */ firstarg = e->value.function.actual; secondarg = firstarg->next; op1 = firstarg->expr; |