diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-12-12 16:55:34 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-12-12 16:55:34 +0000 |
commit | 20d18cdb7a47c529633057c2b697129847b2fa2e (patch) | |
tree | 6427123b4c148dc7109c84eaf42f5a4e9a2fa8aa /gcc/tree-ssa-dom.c | |
parent | a5f712ff3f308c61bad9a71f075f304f367031bd (diff) | |
download | gcc-20d18cdb7a47c529633057c2b697129847b2fa2e.zip gcc-20d18cdb7a47c529633057c2b697129847b2fa2e.tar.gz gcc-20d18cdb7a47c529633057c2b697129847b2fa2e.tar.bz2 |
* tree-ssa-dom.c (thread_across_edge): Fix a comment typo.
From-SVN: r92052
Diffstat (limited to 'gcc/tree-ssa-dom.c')
-rw-r--r-- | gcc/tree-ssa-dom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index 39ac925..88ca529 100644 --- a/gcc/tree-ssa-dom.c +++ b/gcc/tree-ssa-dom.c @@ -653,7 +653,7 @@ thread_across_edge (struct dom_walk_data *walk_data, edge e) if (SSA_NAME_VAR (cached_lhs) != SSA_NAME_VAR (lhs)) break; - /* If CACHED_LHS does not represent the current value of the undering + /* If CACHED_LHS does not represent the current value of the underlying variable in CACHED_LHS/LHS, then we can not ignore this statement. */ if (var_ann (SSA_NAME_VAR (lhs))->current_def != cached_lhs) break; |