diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-10-04 11:57:09 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-10-04 11:57:09 +0000 |
commit | 59c4456e0789cf3fead8522fa3cfbdcf6a5476c5 (patch) | |
tree | 4d67b19673b67dc823e7802d5e86f06cd482e4eb /gcc/tree-data-ref.c | |
parent | 68b26d5cd81e6d59faa9d363b936b65266936174 (diff) | |
download | gcc-59c4456e0789cf3fead8522fa3cfbdcf6a5476c5.zip gcc-59c4456e0789cf3fead8522fa3cfbdcf6a5476c5.tar.gz gcc-59c4456e0789cf3fead8522fa3cfbdcf6a5476c5.tar.bz2 |
* tree-data-ref.c: Fix comment typos.
From-SVN: r88480
Diffstat (limited to 'gcc/tree-data-ref.c')
-rw-r--r-- | gcc/tree-data-ref.c | 8 |
1 files changed, 4 insertions, 4 deletions
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; |