aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-10-04 11:57:09 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-10-04 11:57:09 +0000
commit59c4456e0789cf3fead8522fa3cfbdcf6a5476c5 (patch)
tree4d67b19673b67dc823e7802d5e86f06cd482e4eb /gcc
parent68b26d5cd81e6d59faa9d363b936b65266936174 (diff)
downloadgcc-59c4456e0789cf3fead8522fa3cfbdcf6a5476c5.zip
gcc-59c4456e0789cf3fead8522fa3cfbdcf6a5476c5.tar.gz
gcc-59c4456e0789cf3fead8522fa3cfbdcf6a5476c5.tar.bz2
* tree-data-ref.c: Fix comment typos.
From-SVN: r88480
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/tree-data-ref.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f191277..663896f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/tree-data-ref.c b/gcc/tree-data-ref.c
index 5b5905f..069dcde 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;