c-cppbuiltin.c, [...]: Fix comment typos.

* c-cppbuiltin.c, cgraph.c, domwalk.h, except.c, gimplify.c,
	lambda-code.c, postreload.c, predict.c, tree-sra.c,
	tree-ssa-loop-manip.c, tree.c: Fix comment typos.

From-SVN: r90596
This commit is contained in:
Kazu Hirata 2004-11-13 21:11:04 +00:00 committed by Kazu Hirata
parent e28d0cfbfb
commit 1f83835576
12 changed files with 15 additions and 11 deletions

View File

@ -3,6 +3,10 @@
* bitmap.c, bitmap.h, expmed.c, tree-cfg.c: Fix comment * bitmap.c, bitmap.h, expmed.c, tree-cfg.c: Fix comment
formatting. formatting.
* c-cppbuiltin.c, cgraph.c, domwalk.h, except.c, gimplify.c,
lambda-code.c, postreload.c, predict.c, tree-sra.c,
tree-ssa-loop-manip.c, tree.c: Fix comment typos.
2004-11-13 Kelley Cook <kcook@gcc.gnu.org> 2004-11-13 Kelley Cook <kcook@gcc.gnu.org>
* doc/install.texi (automake): Correctly document that everything now * doc/install.texi (automake): Correctly document that everything now

View File

@ -347,7 +347,7 @@ c_cpp_builtins (cpp_reader *pfile)
different from system to system. */ different from system to system. */
builtin_define_with_int_value ("__GXX_ABI_VERSION", 999999); builtin_define_with_int_value ("__GXX_ABI_VERSION", 999999);
else if (flag_abi_version == 1) else if (flag_abi_version == 1)
/* Due to an historical accident, this version had the value /* Due to a historical accident, this version had the value
"102". */ "102". */
builtin_define_with_int_value ("__GXX_ABI_VERSION", 102); builtin_define_with_int_value ("__GXX_ABI_VERSION", 102);
else else

View File

@ -44,7 +44,7 @@ The callgraph:
The callgraph at the moment does not represent indirect calls or calls The callgraph at the moment does not represent indirect calls or calls
from other compilation unit. Flag NEEDED is set for each node that may from other compilation unit. Flag NEEDED is set for each node that may
be accessed in such a invisible way and it shall be considered an be accessed in such an invisible way and it shall be considered an
entry point to the callgraph. entry point to the callgraph.
Intraprocedural information: Intraprocedural information:

View File

@ -55,7 +55,7 @@ struct dom_walk_data
/* Function to call before the statement walk occurring before the /* Function to call before the statement walk occurring before the
recursive walk of the dominator children. recursive walk of the dominator children.
This typically initializes an block local data and pushes that This typically initializes a block local data and pushes that
data onto BLOCK_DATA_STACK. */ data onto BLOCK_DATA_STACK. */
void (*before_dom_children_before_stmts) (struct dom_walk_data *, void (*before_dom_children_before_stmts) (struct dom_walk_data *,
basic_block); basic_block);

View File

@ -1304,7 +1304,7 @@ emit_to_new_bb_before (rtx seq, rtx insn)
edge e; edge e;
edge_iterator ei; edge_iterator ei;
/* If there happens to be an fallthru edge (possibly created by cleanup_cfg /* If there happens to be a fallthru edge (possibly created by cleanup_cfg
call), we don't want it to go into newly created landing pad or other EH call), we don't want it to go into newly created landing pad or other EH
construct. */ construct. */
for (ei = ei_start (BLOCK_FOR_INSN (insn)->preds); (e = ei_safe_edge (ei)); ) for (ei = ei_start (BLOCK_FOR_INSN (insn)->preds); (e = ei_safe_edge (ei)); )

View File

@ -724,7 +724,7 @@ unshare_expr (tree expr)
return expr; return expr;
} }
/* A terser interface for building a representation of a exception /* A terser interface for building a representation of an exception
specification. */ specification. */
tree tree

View File

@ -53,7 +53,7 @@
A loop iteration space represents the points traversed by the loop. A point in the A loop iteration space represents the points traversed by the loop. A point in the
iteration space can be represented by a vector of size <loop depth>. You can iteration space can be represented by a vector of size <loop depth>. You can
therefore represent the iteration space as a integral combinations of a set therefore represent the iteration space as an integral combinations of a set
of basis vectors. of basis vectors.
A loop iteration space is dense if every integer point between the loop A loop iteration space is dense if every integer point between the loop

View File

@ -427,7 +427,7 @@ reload_cse_simplify_operands (rtx insn, rtx testreg)
extension. Punt on this for now. */ extension. Punt on this for now. */
if (! set) if (! set)
continue; continue;
/* If the destination is a also MEM or a STRICT_LOW_PART, no /* If the destination is also a MEM or a STRICT_LOW_PART, no
extension applies. extension applies.
Also, if there is an explicit extension, we don't have to Also, if there is an explicit extension, we don't have to
worry about an implicit one. */ worry about an implicit one. */

View File

@ -919,7 +919,7 @@ expr_expected_value (tree expr, bitmap visited)
/* If this PHI has itself as an argument, we cannot /* If this PHI has itself as an argument, we cannot
determine the string length of this argument. However, determine the string length of this argument. However,
if we can find a expected constant value for the other if we can find an expected constant value for the other
PHI args then we can still be sure that this is PHI args then we can still be sure that this is
likely a constant. So be optimistic and just likely a constant. So be optimistic and just
continue with the next argument. */ continue with the next argument. */

View File

@ -620,7 +620,7 @@ struct sra_walk_fns
}; };
#ifdef ENABLE_CHECKING #ifdef ENABLE_CHECKING
/* Invoked via walk_tree, if *TP contains an candidate decl, return it. */ /* Invoked via walk_tree, if *TP contains a candidate decl, return it. */
static tree static tree
sra_find_candidate_decl (tree *tp, int *walk_subtrees, sra_find_candidate_decl (tree *tp, int *walk_subtrees,

View File

@ -681,7 +681,7 @@ lv_adjust_loop_header_phi (basic_block first, basic_block second,
/* Adjust entry edge for lv. /* Adjust entry edge for lv.
e is a incoming edge. e is an incoming edge.
--- edge e ---- > [second_head] --- edge e ---- > [second_head]

View File

@ -4054,7 +4054,7 @@ associative_tree_code (enum tree_code code)
return false; return false;
} }
/* Return true if CODE represents an commutative tree code. Otherwise /* Return true if CODE represents a commutative tree code. Otherwise
return false. */ return false. */
bool bool
commutative_tree_code (enum tree_code code) commutative_tree_code (enum tree_code code)