aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2005-12-16 05:49:45 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-12-16 05:49:45 +0000
commit8a6c4339182e5148b15d865234dc5e29733c2441 (patch)
tree0c53df79693e16d06087c8abb8053b872eebca54 /gcc
parenta075400701ad4fa485acb0308b318506bf32dd0d (diff)
downloadgcc-8a6c4339182e5148b15d865234dc5e29733c2441.zip
gcc-8a6c4339182e5148b15d865234dc5e29733c2441.tar.gz
gcc-8a6c4339182e5148b15d865234dc5e29733c2441.tar.bz2
dependency.c, [...]: Fix comment typos.
* dependency.c, resolve.c, trans-array.c: Fix comment typos. * gfortran.texi: Fix typos. From-SVN: r108624
Diffstat (limited to 'gcc')
-rw-r--r--gcc/fortran/ChangeLog5
-rw-r--r--gcc/fortran/dependency.c2
-rw-r--r--gcc/fortran/gfortran.texi2
-rw-r--r--gcc/fortran/resolve.c2
-rw-r--r--gcc/fortran/trans-array.c2
5 files changed, 9 insertions, 4 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 0d364d4..94980f8 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-16 Kazu Hirata <kazu@codesourcery.com>
+
+ * dependency.c, resolve.c, trans-array.c: Fix comment typos.
+ * gfortran.texi: Fix typos.
+
2005-12-14 Erik Edelmann <eedelman@gcc.gnu.org>
PR fortran/18197
diff --git a/gcc/fortran/dependency.c b/gcc/fortran/dependency.c
index d3a486e..4a79560 100644
--- a/gcc/fortran/dependency.c
+++ b/gcc/fortran/dependency.c
@@ -176,7 +176,7 @@ gfc_is_same_range (gfc_array_ref * ar1, gfc_array_ref * ar2, int n, int def)
/* Some array-returning intrinsics can be implemented by reusing the
- data from one of the array arguments. For example, TRANPOSE does
+ data from one of the array arguments. For example, TRANSPOSE does
not necessarily need to allocate new data: it can be implemented
by copying the original array's descriptor and simply swapping the
two dimension specifications.
diff --git a/gcc/fortran/gfortran.texi b/gcc/fortran/gfortran.texi
index ea3ac24..b4f1bf9 100644
--- a/gcc/fortran/gfortran.texi
+++ b/gcc/fortran/gfortran.texi
@@ -962,7 +962,7 @@ The value of the conversion can be queried by using
@code{CONVERT} works between big- and little-endian for
@code{INTEGER} values of all supported kinds and for @code{REAL}
-on IEEE sytems of kinds 4 and 8. Conversion between different
+on IEEE systems of kinds 4 and 8. Conversion between different
``extended double'' types on different architectures such as
m68k and x86_64, which gfortran
supports as @code{REAL(KIND=10)} will probably not work.
diff --git a/gcc/fortran/resolve.c b/gcc/fortran/resolve.c
index d9f0e77..de2da63 100644
--- a/gcc/fortran/resolve.c
+++ b/gcc/fortran/resolve.c
@@ -288,7 +288,7 @@ resolve_contained_fntype (gfc_symbol * sym, gfc_namespace * ns)
/*Fortran 95 Draft Standard, page 51, Section 5.1.1.5, on the Character type,
lists the only ways a character length value of * can be used: dummy arguments
- of proceedures, named constants, and function results in external functions.
+ of procedures, named constants, and function results in external functions.
Internal function results are not on that list; ergo, not permitted. */
if (sym->ts.type == BT_CHARACTER)
diff --git a/gcc/fortran/trans-array.c b/gcc/fortran/trans-array.c
index 45c8351..a9981a3 100644
--- a/gcc/fortran/trans-array.c
+++ b/gcc/fortran/trans-array.c
@@ -673,7 +673,7 @@ gfc_trans_allocate_temp_array (stmtblock_t * pre, stmtblock_t * post,
}
-/* Generate code to tranpose array EXPR by creating a new descriptor
+/* Generate code to transpose array EXPR by creating a new descriptor
in which the dimension specifications have been reversed. */
void