diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-16 16:00:45 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-16 16:00:45 +0000 |
commit | 1f2959f06e9093dfc6e717e0839988046883b8bb (patch) | |
tree | d4390e21373fcfa884178f5708c587e4da66100a /gcc/fortran/trans.h | |
parent | d1f05f931e1689f7a0811acc39379831d40dcea9 (diff) | |
download | gcc-1f2959f06e9093dfc6e717e0839988046883b8bb.zip gcc-1f2959f06e9093dfc6e717e0839988046883b8bb.tar.gz gcc-1f2959f06e9093dfc6e717e0839988046883b8bb.tar.bz2 |
array.c, [...]: Fix comment typos.
* array.c, data.c, decl.c, dependency.c, error.c, f95-lang.c,
interface.c, intrinsic.c, io.c, misc.c, module.c, parse.h,
resolve.c, scanner.c, trans-array.c, trans-array.h,
trans-common.c, trans-const.h, trans-decl.c, trans-expr.c,
trans-intrinsic.c, trans-stmt.c, trans-types.c, trans.c,
trans.h: Fix comment typos. Follow spelling conventions.
From-SVN: r87605
Diffstat (limited to 'gcc/fortran/trans.h')
-rw-r--r-- | gcc/fortran/trans.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/fortran/trans.h b/gcc/fortran/trans.h index 363589b..67bc234 100644 --- a/gcc/fortran/trans.h +++ b/gcc/fortran/trans.h @@ -35,7 +35,7 @@ typedef struct } stmtblock_t; -/* a simplified expresson */ +/* a simplified expression */ typedef struct gfc_se { /* Code blocks to be executed before and after using the value. */ @@ -199,7 +199,7 @@ typedef struct gfc_ss gfc_ss; #define gfc_get_ss() gfc_getmem(sizeof(gfc_ss)) -/* The contents of this aren't actualy used. A NULL SS chain indicates a +/* The contents of this aren't actually used. A NULL SS chain indicates a scalar expression, so this pointer is used to terminate SS chains. */ extern gfc_ss * const gfc_ss_terminator; @@ -415,7 +415,7 @@ void gfc_generate_constructors (void); /* Generate a runtime error check. */ void gfc_trans_runtime_check (tree, tree, stmtblock_t *); -/* Generate code for an assigment, includes scalarization. */ +/* Generate code for an assignment, includes scalarization. */ tree gfc_trans_assignment (gfc_expr *, gfc_expr *); /* Generate code for an pointer assignment. */ @@ -521,7 +521,7 @@ struct lang_decl GTY(()) tree saved_descriptor; /* Assigned integer nodes. Stringlength is the IO format string's length. Addr is the address of the string or the target label. Stringlength is - initialized to -2 and assiged to -1 when addr is assigned to the + initialized to -2 and assigned to -1 when addr is assigned to the address of target label. */ tree stringlen; tree addr; |