From: Kazu Hirata Date: Sun, 12 Dec 2004 16:55:34 +0000 (+0000) Subject: * tree-ssa-dom.c (thread_across_edge): Fix a comment typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=20d18cdb7a47c529633057c2b697129847b2fa2e;p=gcc.git * tree-ssa-dom.c (thread_across_edge): Fix a comment typo. From-SVN: r92052 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ba0229f1fcd..71fec2cecee 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -9,6 +9,8 @@ * reg-stack.c (convert_regs_2): Free stack. + * tree-ssa-dom.c (thread_across_edge): Fix a comment typo. + 2004-12-12 Daniel Berlin * tree-ssa-loop-ch.c (copy_loop_headers): Loop can be null. 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;