OSDN Git Service

* tree-data-ref.c: Fix comment typos.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 4 Oct 2004 11:57:09 +0000 (11:57 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 4 Oct 2004 11:57:09 +0000 (11:57 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88480 138bc75d-0d04-0410-961f-82ee72b054a4

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

index f191277..663896f 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 5b5905f..069dcde 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;