This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] tree-ssa-dom.c: Fix a comment typo.


Hi,

Committed as obvious.

Kazu Hirata

2004-12-12  Kazu Hirata  <kazu@cs.umass.edu>

	* tree-ssa-dom.c (thread_across_edge): Fix a comment typo.

Index: tree-ssa-dom.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-ssa-dom.c,v
retrieving revision 2.74
diff -u -d -p -r2.74 tree-ssa-dom.c
--- tree-ssa-dom.c	10 Dec 2004 17:58:07 -0000	2.74
+++ tree-ssa-dom.c	12 Dec 2004 16:53:28 -0000
@@ -653,7 +653,7 @@ thread_across_edge (struct dom_walk_data
       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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]