diff options
author | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2009-06-07 21:29:43 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2009-06-07 21:29:43 +0200 |
commit | 249eb5068f2182a7c2ef08de73a35e50a0670fd3 (patch) | |
tree | a76bb84d32a9f579329c702dac34d6d83a0382a0 /gcc/tree-ssa-pre.c | |
parent | 95bca6b063bf69c115695473c2a2ffe06695849d (diff) | |
download | gcc-249eb5068f2182a7c2ef08de73a35e50a0670fd3.zip gcc-249eb5068f2182a7c2ef08de73a35e50a0670fd3.tar.gz gcc-249eb5068f2182a7c2ef08de73a35e50a0670fd3.tar.bz2 |
errors.c (internal_error): Commentary typo fix.
2009-06-07 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
* errors.c (internal_error): Commentary typo fix.
* gimple-iterator.c (gsi_insert_seq_on_edge): Ditto.
* tree-ssa-pre.c: Ditto.
From-SVN: r148257
Diffstat (limited to 'gcc/tree-ssa-pre.c')
-rw-r--r-- | gcc/tree-ssa-pre.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-ssa-pre.c b/gcc/tree-ssa-pre.c index fc311bc..11640a8 100644 --- a/gcc/tree-ssa-pre.c +++ b/gcc/tree-ssa-pre.c @@ -134,7 +134,7 @@ along with GCC; see the file COPYING3. If not see /* Representation of expressions on value numbers: - Expressions consisting of value numbers are represented the same + Expressions consisting of value numbers are represented the same way as our VN internally represents them, with an additional "pre_expr" wrapping around them in order to facilitate storing all of the expressions in the same sets. */ @@ -1290,7 +1290,7 @@ translate_vuse_through_block (VEC (vn_reference_op_s, heap) *operands, return NULL_TREE; } -/* Like find_leader, but checks for the value existing in SET1 *or* +/* Like bitmap_find_leader, but checks for the value existing in SET1 *or* SET2. This is used to avoid making a set consisting of the union of PA_IN and ANTIC_IN during insert. */ @@ -2562,8 +2562,8 @@ is_exception_related (gimple stmt) || gimple_assign_rhs_code (stmt) == EXC_PTR_EXPR)); } -/* Return true if OP is a tree which we can perform PRE on - on. This may not match the operations we can value number, but in +/* Return true if OP is a tree which we can perform PRE on. + This may not match the operations we can value number, but in a perfect world would. */ static bool |