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:
parent
e28d0cfbfb
commit
1f83835576
@ -3,6 +3,10 @@
|
||||
* bitmap.c, bitmap.h, expmed.c, tree-cfg.c: Fix comment
|
||||
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>
|
||||
|
||||
* doc/install.texi (automake): Correctly document that everything now
|
||||
|
@ -347,7 +347,7 @@ c_cpp_builtins (cpp_reader *pfile)
|
||||
different from system to system. */
|
||||
builtin_define_with_int_value ("__GXX_ABI_VERSION", 999999);
|
||||
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". */
|
||||
builtin_define_with_int_value ("__GXX_ABI_VERSION", 102);
|
||||
else
|
||||
|
@ -44,7 +44,7 @@ The callgraph:
|
||||
|
||||
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
|
||||
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.
|
||||
|
||||
Intraprocedural information:
|
||||
|
@ -55,7 +55,7 @@ struct dom_walk_data
|
||||
/* Function to call before the statement walk occurring before the
|
||||
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. */
|
||||
void (*before_dom_children_before_stmts) (struct dom_walk_data *,
|
||||
basic_block);
|
||||
|
@ -1304,7 +1304,7 @@ emit_to_new_bb_before (rtx seq, rtx insn)
|
||||
edge e;
|
||||
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
|
||||
construct. */
|
||||
for (ei = ei_start (BLOCK_FOR_INSN (insn)->preds); (e = ei_safe_edge (ei)); )
|
||||
|
@ -724,7 +724,7 @@ unshare_expr (tree expr)
|
||||
return expr;
|
||||
}
|
||||
|
||||
/* A terser interface for building a representation of a exception
|
||||
/* A terser interface for building a representation of an exception
|
||||
specification. */
|
||||
|
||||
tree
|
||||
|
@ -53,7 +53,7 @@
|
||||
|
||||
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
|
||||
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.
|
||||
|
||||
A loop iteration space is dense if every integer point between the loop
|
||||
|
@ -427,7 +427,7 @@ reload_cse_simplify_operands (rtx insn, rtx testreg)
|
||||
extension. Punt on this for now. */
|
||||
if (! set)
|
||||
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.
|
||||
Also, if there is an explicit extension, we don't have to
|
||||
worry about an implicit one. */
|
||||
|
@ -919,7 +919,7 @@ expr_expected_value (tree expr, bitmap visited)
|
||||
|
||||
/* If this PHI has itself as an argument, we cannot
|
||||
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
|
||||
likely a constant. So be optimistic and just
|
||||
continue with the next argument. */
|
||||
|
@ -620,7 +620,7 @@ struct sra_walk_fns
|
||||
};
|
||||
|
||||
#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
|
||||
sra_find_candidate_decl (tree *tp, int *walk_subtrees,
|
||||
|
@ -681,7 +681,7 @@ lv_adjust_loop_header_phi (basic_block first, basic_block second,
|
||||
|
||||
/* Adjust entry edge for lv.
|
||||
|
||||
e is a incoming edge.
|
||||
e is an incoming edge.
|
||||
|
||||
--- edge e ---- > [second_head]
|
||||
|
||||
|
@ -4054,7 +4054,7 @@ associative_tree_code (enum tree_code code)
|
||||
return false;
|
||||
}
|
||||
|
||||
/* Return true if CODE represents an commutative tree code. Otherwise
|
||||
/* Return true if CODE represents a commutative tree code. Otherwise
|
||||
return false. */
|
||||
bool
|
||||
commutative_tree_code (enum tree_code code)
|
||||
|
Loading…
Reference in New Issue
Block a user