gfortran.texi: Fix typos.
* gfortran.texi: Fix typos. Follow spelling conventions. * resolve.c, trans-expr.c, trans-stmt.c: Fix comment typos. Follow spelling conventions. From-SVN: r112780
This commit is contained in:
parent
84dc00e8ac
commit
b82feea52f
5 changed files with 14 additions and 8 deletions
|
@ -1,3 +1,9 @@
|
|||
2006-04-08 Kazu Hirata <kazu@codesourcery.com>
|
||||
|
||||
* gfortran.texi: Fix typos. Follow spelling conventions.
|
||||
* resolve.c, trans-expr.c, trans-stmt.c: Fix comment typos.
|
||||
Follow spelling conventions.
|
||||
|
||||
2006-04-05 Roger Sayle <roger@eyesopen.com>
|
||||
|
||||
* dependency.c (get_no_elements): Delete function.
|
||||
|
|
|
@ -548,7 +548,7 @@ Environment variable forcing standard output to be line buffered (unix).
|
|||
@chapter Runtime: Influencing runtime behavior with environment variables
|
||||
@cindex Runtime
|
||||
|
||||
The behaviour of the @command{gfortran} can be influenced by
|
||||
The behavior of the @command{gfortran} can be influenced by
|
||||
environment variables.
|
||||
|
||||
Malformed environment variables are silently ignored.
|
||||
|
@ -610,7 +610,7 @@ this is also missing, the default is @file{/tmp}.
|
|||
This environment variable controls wether all output is unbuffered.
|
||||
If the first letter is @samp{y}, @samp{Y} or @samp{1}, all output is
|
||||
unbuffered. This will slow down large writes. If the first letter is
|
||||
@samp{n}, @samp{N} or @samp{0}, output is bufferred. This is the
|
||||
@samp{n}, @samp{N} or @samp{0}, output is buffered. This is the
|
||||
default.
|
||||
|
||||
@node GFORTRAN_SHOW_LOCUS
|
||||
|
@ -626,7 +626,7 @@ for runtime errors. The default is to print the location.
|
|||
|
||||
If the first letter is @samp{y}, @samp{Y} or @samp{1},
|
||||
a plus sign is printed
|
||||
where permitted by the Fortran standard. If the first lettter
|
||||
where permitted by the Fortran standard. If the first letter
|
||||
is @samp{n}, @samp{N} or @samp{0}, a plus sign is not printed
|
||||
in most cases. Default is not to print plus signs.
|
||||
|
||||
|
|
|
@ -701,7 +701,7 @@ procedure_kind (gfc_symbol * sym)
|
|||
}
|
||||
|
||||
/* Check references to assumed size arrays. The flag need_full_assumed_size
|
||||
is non-zero when matching actual arguments. */
|
||||
is nonzero when matching actual arguments. */
|
||||
|
||||
static int need_full_assumed_size = 0;
|
||||
|
||||
|
@ -1342,7 +1342,7 @@ resolve_function (gfc_expr * expr)
|
|||
&& expr->value.function.isym->generic_id != GFC_ISYM_PRESENT)
|
||||
{
|
||||
/* Array instrinsics must also have the last upper bound of an
|
||||
asumed size array argument. UBOUND and SIZE have to be
|
||||
assumed size array argument. UBOUND and SIZE have to be
|
||||
excluded from the check if the second argument is anything
|
||||
than a constant. */
|
||||
int inquiry;
|
||||
|
@ -4843,7 +4843,7 @@ resolve_fl_procedure (gfc_symbol *sym, int mp_flag)
|
|||
|
||||
/* Ensure that derived type for are not of a private type. Internal
|
||||
module procedures are excluded by 2.2.3.3 - ie. they are not
|
||||
externally accessible and can access all the objects accesible in
|
||||
externally accessible and can access all the objects accessible in
|
||||
the host. */
|
||||
if (!(sym->ns->parent
|
||||
&& sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
|
||||
|
|
|
@ -1712,7 +1712,7 @@ gfc_conv_aliased_arg (gfc_se * parmse, gfc_expr * expr, int g77)
|
|||
temporary array has lbounds of zero and strides of one in all
|
||||
dimensions, so this is very simple. The offset is only computed
|
||||
outside the innermost loop, so the overall transfer could be
|
||||
optimised further. */
|
||||
optimized further. */
|
||||
info = &rse.ss->data.info;
|
||||
|
||||
tmp_index = gfc_index_zero_node;
|
||||
|
|
|
@ -2650,7 +2650,7 @@ gfc_evaluate_where_mask (gfc_expr * me, forall_info * nested_forall_info,
|
|||
gfc_conv_expr (&rse, me);
|
||||
}
|
||||
|
||||
/* Variable to evalate mask condition. */
|
||||
/* Variable to evaluate mask condition. */
|
||||
cond = gfc_create_var (mask_type, "cond");
|
||||
if (mask && (cmask || pmask))
|
||||
mtmp = gfc_create_var (mask_type, "mask");
|
||||
|
|
Loading…
Add table
Reference in a new issue