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

From-SVN: r95168
This commit is contained in:
Ira Rosen 2005-02-17 12:58:01 +00:00 committed by Ira Rosen
parent d6a5df6afe
commit 9d182aa549
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -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)