* tree-data-ref.c: Fix comment typos.
authorKazu Hirata <kazu@cs.umass.edu>
Mon, 4 Oct 2004 11:57:09 +0000 (11:57 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Mon, 4 Oct 2004 11:57:09 +0000 (11:57 +0000)
From-SVN: r88480

gcc/ChangeLog
gcc/tree-data-ref.c

index f191277b4181f4470dce8e701e232f14ca5e174b..663896f9bc508e0e04db068314dd76b7242b257c 100644 (file)
@@ -1,3 +1,7 @@
+2004-10-04  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * tree-data-ref.c: Fix comment typos.
+
 2004-10-04  Sebastian Pop  <pop@cri.ensmp.fr>
 
        * tree-data-ref.c (array_base_name_differ_p): Fix comments.  When
index 5b5905f3e3abef6619bb7c331171771007edb573..069dcde3a7c4a5c6bae504c2e605ae02eead108d 100644 (file)
@@ -142,10 +142,10 @@ array_base_name_differ_p (struct data_reference *a,
   /* 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;