Commit 59c4456e by Kazu Hirata Committed by Kazu Hirata

* tree-data-ref.c: Fix comment typos.

From-SVN: r88480
parent 68b26d5c
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> 2004-10-04 Sebastian Pop <pop@cri.ensmp.fr>
* tree-data-ref.c (array_base_name_differ_p): Fix comments. When * tree-data-ref.c (array_base_name_differ_p): Fix comments. When
......
...@@ -142,10 +142,10 @@ array_base_name_differ_p (struct data_reference *a, ...@@ -142,10 +142,10 @@ array_base_name_differ_p (struct data_reference *a,
/* Determine if different bases. */ /* Determine if different bases. */
/* At this point we know that base_a != base_b. However, pointer /* 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, accesses of the form x=(*p) and y=(*q), whose bases are p and q,
may still pointing to the same base. In SSAed GIMPLE p and q will 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 it's be SSA_NAMES in this case. Therefore, here we check if they are
really two diferent declarations. */ really two different declarations. */
if (TREE_CODE (base_a) == VAR_DECL && TREE_CODE (base_b) == VAR_DECL) if (TREE_CODE (base_a) == VAR_DECL && TREE_CODE (base_b) == VAR_DECL)
{ {
*differ_p = true; *differ_p = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment