summaryrefslogtreecommitdiff
path: root/gcc/fortran/trans.h
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-01-23 14:36:26 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-01-23 14:36:26 +0000
commit7b3423b968f7e45afe3d21fefefcae397065637e (patch)
tree26302ea8d257615a5e90cc5c33f29c1651caa55b /gcc/fortran/trans.h
parent60065042c696a573e26af5d74fa64092f6145269 (diff)
downloadgcc-7b3423b968f7e45afe3d21fefefcae397065637e.tar.gz
* data.c, dependency.c, f95-lang.c, io.c, trans-array.c,
trans-decl.c, trans-expr.c, trans-intrinsic.c, trans-io.c, trans-stmt.c, trans-types.c, trans.h: Fix comment typos. Follow spelling conventions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94111 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fortran/trans.h')
-rw-r--r--gcc/fortran/trans.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/fortran/trans.h b/gcc/fortran/trans.h
index f347724a047..b670f7a3888 100644
--- a/gcc/fortran/trans.h
+++ b/gcc/fortran/trans.h
@@ -1,5 +1,5 @@
/* Header for code translation functions
- Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
Contributed by Paul Brook
This file is part of GCC.
@@ -75,7 +75,7 @@ typedef struct gfc_se
gfc_se;
-/* Scalarisation State chain. Created by walking an expression tree before
+/* Scalarization State chain. Created by walking an expression tree before
creating the scalarization loops. Then passed as part of a gfc_se structure
to translate the expression inside the loop. Note that these chains are
terminated by gfc_se_terminator, not NULL. A NULL pointer in a gfc_se
@@ -106,7 +106,7 @@ typedef struct gfc_ss_info
tree stride[GFC_MAX_DIMENSIONS];
tree delta[GFC_MAX_DIMENSIONS];
- /* Translation from scalariser dimensions to actual dimensions.
+ /* Translation from scalarizer dimensions to actual dimensions.
actual = dim[scalarizer] */
int dim[GFC_MAX_DIMENSIONS];
}
@@ -191,7 +191,7 @@ typedef struct gfc_ss
struct gfc_ss *loop_chain;
struct gfc_ss *next;
- /* This is used by assignments requiring teporaries. The bits specify which
+ /* This is used by assignments requiring temporaries. The bits specify which
loops the terms appear in. This will be 1 for the RHS expressions,
2 for the LHS expressions, and 3(=1|2) for the temporary. */
unsigned useflags:2;
@@ -213,7 +213,7 @@ typedef struct gfc_loopinfo
/* All the SS involved with this loop. */
gfc_ss *ss;
- /* The SS describing the teporary used in an assignment. */
+ /* The SS describing the temporary used in an assignment. */
gfc_ss *temp_ss;
/* The scalarization loop index variables. */