mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-16 23:43:39 +08:00
simplify-rtx.c (simplify_binary_operation_1): Removed erroneous break that was preventing simplify_associative_operation()...
* simplify-rtx.c (simplify_binary_operation_1): Removed erroneous break that was preventing simplify_associative_operation() for xor. From-SVN: r127319
This commit is contained in:
parent
14670a74f8
commit
d6bc05d4a4
@ -1,3 +1,8 @@
|
||||
2007-08-09 Simon Baldwin <simonb@google.com>
|
||||
|
||||
* simplify-rtx.c (simplify_binary_operation_1): Removed erroneous
|
||||
break that was preventing simplify_associative_operation() for xor.
|
||||
|
||||
2007-08-09 Sandra Loosemore <sandra@codesourcery.com>
|
||||
Nigel Stephens <nigel@mips.com>
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user