aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/trans-expr.c
diff options
context:
space:
mode:
authorOndřej Bílka <neleai@seznam.cz>2013-07-21 19:57:23 +0200
committerTobias Burnus <burnus@gcc.gnu.org>2013-07-21 19:57:23 +0200
commit9b110be230335f0b0bc3cf676b42f0280225a784 (patch)
treedbd1fa6510c82db2a0f675666158f5a23da5fe4d /gcc/fortran/trans-expr.c
parentc65cb8d1f07920e911d13e551476e28d204e8daa (diff)
downloadgcc-9b110be230335f0b0bc3cf676b42f0280225a784.zip
gcc-9b110be230335f0b0bc3cf676b42f0280225a784.tar.gz
gcc-9b110be230335f0b0bc3cf676b42f0280225a784.tar.bz2
trans-decl.c: Fix comment typos.
2013-07-21 Ondřej Bílka <neleai@seznam.cz> * trans-decl.c: Fix comment typos. * trans-expr.c: Ditto. 2013-07-21 Ondřej Bílka <neleai@seznam.cz> * io/transfer.c: Fix comment typos. From-SVN: r201107
Diffstat (limited to 'gcc/fortran/trans-expr.c')
-rw-r--r--gcc/fortran/trans-expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fortran/trans-expr.c b/gcc/fortran/trans-expr.c
index de1e51b..e0cdd49 100644
--- a/gcc/fortran/trans-expr.c
+++ b/gcc/fortran/trans-expr.c
@@ -1235,7 +1235,7 @@ gfc_conv_expr_present (gfc_symbol * sym)
as actual argument to denote absent dummies. For array descriptors,
we thus also need to check the array descriptor. For BT_CLASS, it
can also occur for scalars and F2003 due to type->class wrapping and
- class->class wrapping. Note futher that BT_CLASS always uses an
+ class->class wrapping. Note further that BT_CLASS always uses an
array descriptor for arrays, also for explicit-shape/assumed-size. */
if (!sym->attr.allocatable
@@ -2829,7 +2829,7 @@ gfc_build_compare_string (tree len1, tree str1, tree len2, tree str2, int kind,
/* We can compare via memcpy if the strings are known to be equal
in length and they are
- kind=1
- - kind=4 and the comparision is for (in)equality. */
+ - kind=4 and the comparison is for (in)equality. */
if (INTEGER_CST_P (len1) && INTEGER_CST_P (len2)
&& tree_int_cst_equal (len1, len2)