aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-live.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2006-12-22 01:19:39 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2006-12-22 01:19:39 +0000
commit2e226e6699bdcf161e3738641490ca18b12faefa (patch)
tree4248e605c7adbfb3c83eaf3d9c6b6448e0edcdc7 /gcc/tree-ssa-live.c
parent48c9a7f0dbf902685d3a289c32e42812e868b939 (diff)
downloadgcc-2e226e6699bdcf161e3738641490ca18b12faefa.zip
gcc-2e226e6699bdcf161e3738641490ca18b12faefa.tar.gz
gcc-2e226e6699bdcf161e3738641490ca18b12faefa.tar.bz2
cgraphunit.c, [...]: Fix comment typos.
* cgraphunit.c, config/i386/i386.c, config/ia64/ia64.c, cse.c, output.h, toplev.c, tree-affine.h, tree-flow.h, tree-ssa-alias.c, tree-ssa-coalesce.c, tree-ssa-live.c, tree-ssa-live.h, tree-ssa-operands.c, tree-ssa-ter.c, tree-vrp.c, varpool.c: Fix comment typos. From-SVN: r120137
Diffstat (limited to 'gcc/tree-ssa-live.c')
-rw-r--r--gcc/tree-ssa-live.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssa-live.c b/gcc/tree-ssa-live.c
index 2049e43..eecf6e7 100644
--- a/gcc/tree-ssa-live.c
+++ b/gcc/tree-ssa-live.c
@@ -560,7 +560,7 @@ delete_tree_live_info (tree_live_info_p live)
/* Visit basic block BB and propogate 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 reallocting
+ TMP is a temporary work bitmap which is passed in to avoid reallocating
it each time. */
static void
@@ -602,7 +602,7 @@ loe_visit_block (tree_live_info_p live, basic_block bb, sbitmap visited,
/* Using LIVE, fill in all the live-on-entry blocks between the defs and uses
- of all the vairables. */
+ of all the variables. */
static void
live_worklist (tree_live_info_p live)
@@ -631,7 +631,7 @@ live_worklist (tree_live_info_p live)
}
-/* Calulate the initial live on entry vector for SSA_NAME using immediate_use
+/* Calculate the initial live on entry vector for SSA_NAME using immediate_use
links. Set the live on entry fields in LIVE. Def's are marked temporarily
in the liveout vector. */