This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[patch] tree-data-ref.c: Fix comment typos.
- From: Kazu Hirata <kazu at cs dot umass dot edu>
- To: gcc-patches at gcc dot gnu dot org
- Date: Mon, 04 Oct 2004 07:57:26 -0400 (EDT)
- Subject: [patch] tree-data-ref.c: Fix comment typos.
Hi,
Committed as obvious.
Kazu Hirata
2004-10-04 Kazu Hirata <kazu@cs.umass.edu>
* tree-data-ref.c: Fix comment typos.
Index: tree-data-ref.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-data-ref.c,v
retrieving revision 2.9
diff -u -r2.9 tree-data-ref.c
--- tree-data-ref.c 4 Oct 2004 09:12:43 -0000 2.9
+++ tree-data-ref.c 4 Oct 2004 11:51:07 -0000
@@ -142,10 +142,10 @@
/* Determine if different bases. */
/* At this point we know that base_a != base_b. However, pointer
- accesses of the form x=(*p) and y=(*q), which bases are p and q,
- may still pointing to the same base. In SSAed GIMPLE p and q will
- be SSA_NAMES in this case. Therefore, here we check if it's
- really two diferent declarations. */
+ accesses of the form x=(*p) and y=(*q), whose bases are p and q,
+ may still be pointing to the same base. In SSAed GIMPLE p and q will
+ be SSA_NAMES in this case. Therefore, here we check if they are
+ really two different declarations. */
if (TREE_CODE (base_a) == VAR_DECL && TREE_CODE (base_b) == VAR_DECL)
{
*differ_p = true;