diff options
author | Daniel Berlin <dberlin@dberlin.org> | 2007-06-10 14:13:18 +0000 |
---|---|---|
committer | Daniel Berlin <dberlin@gcc.gnu.org> | 2007-06-10 14:13:18 +0000 |
commit | 55edccf416b868b9b05a459a25487785eaaf7b63 (patch) | |
tree | 4bf87f9ad05eb29a503990baa669100ec1d9275a /gcc/tree-data-ref.c | |
parent | 28ec62e0a776f2b19c3c989448534fcee641e020 (diff) | |
download | gcc-55edccf416b868b9b05a459a25487785eaaf7b63.zip gcc-55edccf416b868b9b05a459a25487785eaaf7b63.tar.gz gcc-55edccf416b868b9b05a459a25487785eaaf7b63.tar.bz2 |
tree-data-ref.c (dr_may_alias_p): Check that decl_a != decl_b, and allow DECL_P here.
2007-06-09 Daniel Berlin <dberlin@dberlin.org>
* tree-data-ref.c (dr_may_alias_p): Check that decl_a != decl_b,
and allow DECL_P here.
From-SVN: r125601
Diffstat (limited to 'gcc/tree-data-ref.c')
-rw-r--r-- | gcc/tree-data-ref.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/tree-data-ref.c b/gcc/tree-data-ref.c index 99f8fd2..4d96311 100644 --- a/gcc/tree-data-ref.c +++ b/gcc/tree-data-ref.c @@ -1176,8 +1176,9 @@ dr_may_alias_p (struct data_reference *a, struct data_reference *b) if (TYPE_RESTRICT (type_a) && TYPE_RESTRICT (type_b) && (!DR_IS_READ (a) || !DR_IS_READ (b)) - && decl_a && TREE_CODE (decl_a) == PARM_DECL - && decl_b && TREE_CODE (decl_b) == PARM_DECL + && decl_a && DECL_P (decl_a) + && decl_b && DECL_P (decl_b) + && decl_a != decl_b && TREE_CODE (DECL_CONTEXT (decl_a)) == FUNCTION_DECL && DECL_CONTEXT (decl_a) == DECL_CONTEXT (decl_b)) return false; |