aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssanames.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2007-01-31 03:45:38 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2007-01-31 03:45:38 +0000
commit88512ba0b895155c90c768ec9f3fbd0f6c7ca06d (patch)
treedd7705242a6f3829eaaeda8c5fd84385708e0595 /gcc/tree-ssanames.c
parent65de695fa500860d057a377fd7da61059dced000 (diff)
downloadgcc-88512ba0b895155c90c768ec9f3fbd0f6c7ca06d.zip
gcc-88512ba0b895155c90c768ec9f3fbd0f6c7ca06d.tar.gz
gcc-88512ba0b895155c90c768ec9f3fbd0f6c7ca06d.tar.bz2
cgraphunit.c, [...]: Fix comment typos.
* cgraphunit.c, config/arm/arm.c, config/m68k/m68k.c, ipa-inline.c, tree-profile.c, tree-ssa-live.c, tree-ssa-math-opts.c, tree-ssanames.c, tree-vect-analyze.c, value-prof.c: Fix comment typos. From-SVN: r121374
Diffstat (limited to 'gcc/tree-ssanames.c')
-rw-r--r--gcc/tree-ssanames.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssanames.c b/gcc/tree-ssanames.c
index 07b83f8..9c61a3f 100644
--- a/gcc/tree-ssanames.c
+++ b/gcc/tree-ssanames.c
@@ -318,7 +318,7 @@ release_dead_ssa_names (void)
referenced_var_iterator rvi;
/* Current defs point to various dead SSA names that in turn points to dead
- statements so bunch of dead memory is holded from releasing. */
+ statements so bunch of dead memory is held from releasing. */
FOR_EACH_REFERENCED_VAR (t, rvi)
set_current_def (t, NULL);
/* Now release the freelist. */
@@ -328,7 +328,7 @@ release_dead_ssa_names (void)
/* Dangling pointers might make GGC to still see dead SSA names, so it is
important to unlink the list and avoid GGC from seeing all subsequent
SSA names. In longer run we want to have all dangling pointers here
- removed (since they usually go trhough dead statements that consume
+ removed (since they usually go through dead statements that consume
considerable amounts of memory). */
TREE_CHAIN (t) = NULL_TREE;
n++;