Commit 2054fc29 by Volker Reichelt Committed by Volker Reichelt

* decl.c, resolve.c, trans-array.c, trans.h: Fix comment typo(s).

From-SVN: r95518
parent 78dcd41a
2005-02-24 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
* decl.c, resolve.c, trans-array.c, trans.h: Fix comment typo(s).
2005-02-24 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de> 2005-02-24 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
Revert yesterday's patch: Revert yesterday's patch:
......
...@@ -27,7 +27,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA ...@@ -27,7 +27,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#include "parse.h" #include "parse.h"
/* This flag is set if a an old-style length selector is matched /* This flag is set if an old-style length selector is matched
during a type-declaration statement. */ during a type-declaration statement. */
static int old_char_selector; static int old_char_selector;
......
...@@ -884,8 +884,8 @@ set_type: ...@@ -884,8 +884,8 @@ set_type:
} }
/* Figure out if if a function reference is pure or not. Also sets the name /* Figure out if a function reference is pure or not. Also set the name
of the function for a potential error message. Returns nonzero if the of the function for a potential error message. Return nonzero if the
function is PURE, zero if not. */ function is PURE, zero if not. */
static int static int
......
...@@ -1271,7 +1271,7 @@ gfc_conv_ss_descriptor (stmtblock_t * block, gfc_ss * ss, int base) ...@@ -1271,7 +1271,7 @@ gfc_conv_ss_descriptor (stmtblock_t * block, gfc_ss * ss, int base)
/* Also the data pointer. */ /* Also the data pointer. */
tmp = gfc_conv_array_data (se.expr); tmp = gfc_conv_array_data (se.expr);
/* If this is a variable or address of a variable we use it directly. /* If this is a variable or address of a variable we use it directly.
Otherwise we must evaluate it now to to avoid break dependency Otherwise we must evaluate it now to avoid breaking dependency
analysis by pulling the expressions for elemental array indices analysis by pulling the expressions for elemental array indices
inside the loop. */ inside the loop. */
if (!(DECL_P (tmp) if (!(DECL_P (tmp)
......
...@@ -118,7 +118,7 @@ typedef enum ...@@ -118,7 +118,7 @@ typedef enum
scalarization loop. */ scalarization loop. */
GFC_SS_SCALAR, GFC_SS_SCALAR,
/* Like GFC_SS_SCALAR except it evaluates a pointer the the expression. /* Like GFC_SS_SCALAR except it evaluates a pointer to the expression.
Used for elemental function parameters. */ Used for elemental function parameters. */
GFC_SS_REFERENCE, GFC_SS_REFERENCE,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment