Commit 9d182aa5 by Ira Rosen Committed by Ira Rosen

* tree-data-ref.c (array_base_name_differ_p): Remove gcc_assert.

From-SVN: r95168
parent d6a5df6a
2005-02-17 Ira Rosen <irar@il.ibm.com>
* tree-data-ref.c (array_base_name_differ_p): Remove gcc_assert.
2005-02-17 Ira Rosen <irar@il.ibm.com>
* tree-vect-analyze.c (vect_analyze_pointer_ref_access): Use
POINTER_TYPE_P when checking that type is a pointer.
(vect_get_memtag): Remove.
......
......@@ -117,8 +117,6 @@ array_base_name_differ_p (struct data_reference *a,
ta = TREE_TYPE (base_a);
tb = TREE_TYPE (base_b);
gcc_assert (!POINTER_TYPE_P (ta) && !POINTER_TYPE_P (tb));
/* Determine if same base. Example: for the array accesses
a[i], b[i] or pointer accesses *a, *b, bases are a, b. */
if (base_a == base_b)
......
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