diff options
author | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-02-16 20:29:19 +0000 |
---|---|---|
committer | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-02-16 20:29:19 +0000 |
commit | 911686dc1c962d2f764ca375e8112ea206166e92 (patch) | |
tree | 6f2d93e3b2fb28ec1f9fcf8f717e34a4bb5d1318 /gcc/tree-ssa-operands.c | |
parent | 2e33cac51d19b0ae422cd030cc9a0184b1bc0748 (diff) | |
download | gcc-911686dc1c962d2f764ca375e8112ea206166e92.tar.gz |
2006-02-16 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa-operands.c (access_can_touch_variable): Fix typo in
previous change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111148 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-operands.c')
-rw-r--r-- | gcc/tree-ssa-operands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index 70b4ea10972..3318b0ece28 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -1701,7 +1701,7 @@ access_can_touch_variable (tree ref, tree alias, HOST_WIDE_INT offset, && TREE_CODE (ref) != INDIRECT_REF && !MTAG_P (alias) && !AGGREGATE_TYPE_P (TREE_TYPE (alias)) - && !TREE_CODE (TREE_TYPE (alias)) == COMPLEX_TYPE + && TREE_CODE (TREE_TYPE (alias)) != COMPLEX_TYPE && !POINTER_TYPE_P (TREE_TYPE (alias))) { #ifdef ACCESS_DEBUGGING |