diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-26 13:00:47 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-26 13:00:47 +0000 |
commit | 80777cd8f5529d02dd4eb3b4eba1afefaa123293 (patch) | |
tree | bf7ffb2b31635e32954ef15161507e715433586b /gcc/tree-ssa-live.c | |
parent | 666137bc66ce56e73fcdd9d4764519d010f47f4a (diff) | |
download | gcc-80777cd8f5529d02dd4eb3b4eba1afefaa123293.tar.gz |
* config/i386/i386.c, config/pa/pa.c, config/spu/spu.c,
df-problems.c, df-scan.c, domwalk.c, ebitmap.c, ebitmap.h,
fold-const.c, gcc.c, ipa-type-escape.c, omega.c, omega.h,
tree-ssa-coalesce.c, tree-ssa-live.c, tree-ssa-structalias.c,
tree-vrp.c: Fix comment typos. Follow spelling conventions.
* doc/tm.texi: Follow spelling conventions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125090 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-live.c')
-rw-r--r-- | gcc/tree-ssa-live.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-live.c b/gcc/tree-ssa-live.c index 7e98e2cf8e8..4c32d487ccc 100644 --- a/gcc/tree-ssa-live.c +++ b/gcc/tree-ssa-live.c @@ -569,7 +569,7 @@ delete_tree_live_info (tree_live_info_p live) } -/* Visit basic block BB and propogate any required live on entry bits from +/* Visit basic block BB and propagate any required live on entry bits from LIVE into the predecessors. VISITED is the bitmap of visited blocks. TMP is a temporary work bitmap which is passed in to avoid reallocating it each time. */ @@ -625,7 +625,7 @@ live_worklist (tree_live_info_p live) sbitmap_zero (visited); - /* Visit all the blocks in reverse order and propogate live on entry values + /* Visit all the blocks in reverse order and propagate live on entry values into the predecessors blocks. */ FOR_EACH_BB_REVERSE (bb) loe_visit_block (live, bb, visited, tmp); |