diff options
author | simonb <simonb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-09 18:30:49 +0000 |
---|---|---|
committer | simonb <simonb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-09 18:30:49 +0000 |
commit | 5cda8d0df8d4543a2249953d2107f8a21275e16a (patch) | |
tree | 6f82729fcd3970cf44eb7c65e0ecc61c77d1af4f /gcc/simplify-rtx.c | |
parent | e533b20e5dabbb15601e49736e9e9ca917dcb44e (diff) | |
download | gcc-5cda8d0df8d4543a2249953d2107f8a21275e16a.tar.gz |
* simplify-rtx.c (simplify_binary_operation_1): Removed erroneous
break that was preventing simplify_associative_operation() for xor.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127319 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/simplify-rtx.c')
-rw-r--r-- | gcc/simplify-rtx.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index 1203bad2c9e..1acb34c110d 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -2293,8 +2293,6 @@ simplify_binary_operation_1 (enum rtx_code code, enum machine_mode mode, && (reversed = reversed_comparison (op0, mode))) return reversed; - break; - tem = simplify_associative_operation (code, mode, op0, op1); if (tem) return tem; |