aboutsummaryrefslogtreecommitdiff
path: root/gcc/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ChangeLog')
-rw-r--r--gcc/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b2abdce..526af5d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,12 @@
2006-02-25 Roger Sayle <roger@eyesopen.com>
+ * simplify-rtx.c (simplify_relational_operation_1): Simplify
+ (X^Y) == 0 as X == Y and (X^Y) != 0 as X != Y. Simplify (X^Y) == Y
+ as X == 0, and some symmetry related transformations.
+ Simplify (X^C1) == C2 as X == (C1^C2). Split long comment line.
+
+2006-02-25 Roger Sayle <roger@eyesopen.com>
+
PR middle-end/23673
* fold-const.c (fold_binary) <EQ_EXPR>: Fold (X^Y) == 0 as X == Y
and (X^Y) != 0 as X != Y. Fold (X^Y) == Y as X == 0, and some