OSDN Git Service

* tree-ssa-dom.c (thread_across_edge): Fix a comment typo.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 12 Dec 2004 16:55:34 +0000 (16:55 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 12 Dec 2004 16:55:34 +0000 (16:55 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92052 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree-ssa-dom.c

index ba0229f..71fec2c 100644 (file)
@@ -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  <dberlin@dberlin.org>
 
        * tree-ssa-loop-ch.c (copy_loop_headers): Loop can be null.
index 39ac925..88ca529 100644 (file)
@@ -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;