From: Kazu Hirata Date: Mon, 4 Oct 2004 11:57:09 +0000 (+0000) Subject: * tree-data-ref.c: Fix comment typos. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59c4456e0789cf3fead8522fa3cfbdcf6a5476c5;p=gcc.git * tree-data-ref.c: Fix comment typos. From-SVN: r88480 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f191277b418..663896f9bc5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-10-04 Kazu Hirata + + * tree-data-ref.c: Fix comment typos. + 2004-10-04 Sebastian Pop * tree-data-ref.c (array_base_name_differ_p): Fix comments. When diff --git a/gcc/tree-data-ref.c b/gcc/tree-data-ref.c index 5b5905f3e3a..069dcde3a7c 100644 --- a/gcc/tree-data-ref.c +++ b/gcc/tree-data-ref.c @@ -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;