+2005-04-01 Kazu Hirata <kazu@cs.umass.edu>
+
+ * decl.c, f95-lang.c, interface.c, module.c, trans-stmt.c,
+ trans.h: Fix comment typos.
+
2005-03-29 Steven G. Kargl <kargls@comcast.net>
* gfortran.h (option_t): Change d8, i8, r8 to flag_default_double,
/* Match the stuff following a DATA statement. If ERROR_FLAG is set,
we are matching a DATA statement and are therefore issuing an error
if we encounter something unexpected, if not, we're trying to match
- an old-style intialization expression of the form INTEGER I /2/. */
+ an old-style initialization expression of the form INTEGER I /2/. */
match
gfc_match_data (void)
/* OK, we've successfully matched the declaration. Now put the
symbol in the current namespace, because it might be used in the
- optional intialization expression for this symbol, e.g. this is
+ optional initialization expression for this symbol, e.g. this is
perfectly legal:
integer, parameter :: i = huge(i)
TREE_CHAIN (decl) = current_binding_level->names;
current_binding_level->names = decl;
- /* For the declartion of a type, set its name if it is not already set. */
+ /* For the declaration of a type, set its name if it is not already set. */
if (TREE_CODE (decl) == TYPE_DECL && TYPE_NAME (TREE_TYPE (decl)) == 0)
{
/* Perform the correspondence test in rule 2 of section 14.1.2.3.
- Returns zero if no argument is found that satisifes rule 2, nonzero
+ Returns zero if no argument is found that satisfies rule 2, nonzero
otherwise.
This test is also not symmetric in f1 and f2 and must be called
return t;
}
-/* Specialisation of mio_name. */
+/* Specialization of mio_name. */
#define DECL_MIO_NAME(TYPE) \
static inline TYPE \
minit (NULL, -1)
};
-/* Specialisation of mio_name. */
+/* Specialization of mio_name. */
DECL_MIO_NAME(ab_attribute)
DECL_MIO_NAME(ar_type)
DECL_MIO_NAME(array_type)
case EXEC_ASSIGN:
/* A scalar or array assignment. */
need_temp = gfc_check_dependency (c->expr, c->expr2, varexpr, nvar);
- /* Teporaries due to array assignment data dependencies introduce
+ /* Temporaries due to array assignment data dependencies introduce
no end of problems. */
if (need_temp)
gfc_trans_assign_need_temp (c->expr, c->expr2, NULL,
tree gfc_chainon_list (tree, tree);
/* When using the gfc_conv_* make sure you understand what they do, i.e.
- when a POST chain may be created, and what the retured expression may be
+ when a POST chain may be created, and what the returned expression may be
used for. Note that character strings have special handling. This
should not be a problem as most statements/operations only deal with
numeric/logical types. */
/* Initialize a statement block. */
void gfc_init_block (stmtblock_t *);
-/* Start a new satement block. Like gfc_init_block but also starts a new
+/* Start a new statement block. Like gfc_init_block but also starts a new
variable scope. */
void gfc_start_block (stmtblock_t *);
/* Finish a statement block. Also closes the scope if the block was created
/* Returns true if a variable of specified size should go on the stack. */
int gfc_can_put_var_on_stack (tree);
-/* Allocate the lang-spcific part of a decl node. */
+/* Allocate the lang-specific part of a decl node. */
void gfc_allocate_lang_decl (tree);
/* Advance along a TREE_CHAIN. */