aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Berlin <dberlin@dbrelin.org>2006-02-16 20:29:19 +0000
committerDaniel Berlin <dberlin@dbrelin.org>2006-02-16 20:29:19 +0000
commit20b3b1952cc03669caf80865a07d709856fb0180 (patch)
tree6f2d93e3b2fb28ec1f9fcf8f717e34a4bb5d1318
parent3e4692be3035000319a63b909b0b98892e8a019d (diff)
2006-02-16 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa-operands.c (access_can_touch_variable): Fix typo in previous change. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@111148 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tree-ssa-operands.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 953abf6cadd..f9961f978ca 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2006-02-16 Daniel Berlin <dberlin@dberlin.org>
+
+ * tree-ssa-operands.c (access_can_touch_variable): Fix typo in
+ previous change.
+
2006-02-16 Zdenek Dvorak <dvorakz@suse.cz>
* loop-invariant.c (invariant_for_use, check_dependencies): Fail for
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