summaryrefslogtreecommitdiff
path: root/gcc/tree-data-ref.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-04 11:57:09 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-04 11:57:09 +0000
commit7c37adcb3df10594790b74846c788cf629bebd8a (patch)
tree4d67b19673b67dc823e7802d5e86f06cd482e4eb /gcc/tree-data-ref.c
parent5302ba4c952d68a2b2f57c32ed47fe6ea38715d0 (diff)
downloadgcc-7c37adcb3df10594790b74846c788cf629bebd8a.tar.gz
* tree-data-ref.c: Fix comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88480 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-data-ref.c')
-rw-r--r--gcc/tree-data-ref.c8
1 files changed, 4 insertions, 4 deletions
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;