summaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-dom.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-12-12 16:55:34 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-12-12 16:55:34 +0000
commit87be766d5f6cbe49df12eaf1233bd9beda953623 (patch)
tree6427123b4c148dc7109c84eaf42f5a4e9a2fa8aa /gcc/tree-ssa-dom.c
parent616ba5c3d0b0d1335bf1f164e8aef45bc453eab9 (diff)
downloadgcc-87be766d5f6cbe49df12eaf1233bd9beda953623.tar.gz
* tree-ssa-dom.c (thread_across_edge): Fix a comment typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92052 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-dom.c')
-rw-r--r--gcc/tree-ssa-dom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c
index 39ac925fb32..88ca5292dc7 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;