diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-31 03:45:38 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-31 03:45:38 +0000 |
commit | 0d42444097d8eae1770b26ae9dec36a78ce7a806 (patch) | |
tree | dd7705242a6f3829eaaeda8c5fd84385708e0595 /gcc/tree-ssanames.c | |
parent | 019b84d1d5168ba85bbb03100a8d21c626b08d50 (diff) | |
download | gcc-0d42444097d8eae1770b26ae9dec36a78ce7a806.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121374 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssanames.c')
-rw-r--r-- | gcc/tree-ssanames.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssanames.c b/gcc/tree-ssanames.c index 07b83f831af..9c61a3f1c38 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++; |